类:Mongo::Monitoring::Event::Cmap::ConnectionCreated
- 继承:
-
Base
- 对象
- Event::Base
- Base
- Mongo::Monitoring::Event::Cmap::ConnectionCreated
- 定义于:
- build/Ruby-driver-v 2.19 /lib/mongo/monitoring/event/cmap/connection_created.rb
Overview
创建连接时发布的事件。
实例属性摘要折叠
-
#地址⇒ Mongo::Address
只读
地址 连接将连接到的服务器的解决。
-
# connection_id ⇒ 整数
只读
Connection_id 连接的ID 。
实例方法摘要折叠
-
#initialize (address, ID ) ⇒ ConnectionCreated
构造函数
private
创建事件。
-
#摘要⇒ string
返回简洁而有用的事件摘要。
构造函数详情
#initialize (address, ID ) ⇒ ConnectionCreated
此方法是私有 API 的一部分。 您应尽可能避免使用此方法,因为它将来可能会被删除或更改。
创建事件。
46 47 48 49 |
# File 'build/Ruby-driver-v 2.19 /lib/mongo/monitoring/event/cmap/connection_created.rb', 第46行 def 初始化(地址, id) @address = 地址 @connection_id = id end |
实例属性详细信息
#地址⇒ Mongo::Address (readonly)
返回解决该连接将连接到的服务器的解决。
32 33 34 |
# File 'build/Ruby-driver-v 2.19 /lib/mongo/monitoring/event/cmap/connection_created.rb', 第32行 def 地址 @address end |
# connection_id ⇒整数(只读)
返回 connection_id 连接的 ID。
37 38 39 |
# File 'build/Ruby-driver-v 2.19 /lib/mongo/monitoring/event/cmap/connection_created.rb', 第37行 def connection_id @connection_id end |
实例方法详细信息
#摘要⇒ string
注意:
此方法是实验性的,可能会发生变化。
返回简洁而有用的事件摘要。
59 60 61 62 |
# File 'build/Ruby-driver-v 2.19 /lib/mongo/monitoring/event/cmap/connection_created.rb', 第59行 def 总结 " #< #{ { self . class . name . sub ( / ^Mongo::Monitoring::Event::Cmap:: / , ' ' ) } " + " Address= #{ Address } connection_id= #{ connection_id } > " end |