Class: Ice::ConnectionInfo
- Inherits:
-
Object
- Object
- Ice::ConnectionInfo
- Defined in:
- lib/Ice/Connection.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#adapterName ⇒ Object
Returns the value of attribute adapterName.
-
#connectionId ⇒ Object
Returns the value of attribute connectionId.
-
#incoming ⇒ Object
Returns the value of attribute incoming.
-
#underlying ⇒ Object
Returns the value of attribute underlying.
Instance Method Summary collapse
-
#initialize(underlying = nil, incoming = false, adapterName = '', connectionId = '') ⇒ ConnectionInfo
constructor
A new instance of ConnectionInfo.
Constructor Details
#initialize(underlying = nil, incoming = false, adapterName = '', connectionId = '') ⇒ ConnectionInfo
Returns a new instance of ConnectionInfo.
80 81 82 83 84 85 |
# File 'lib/Ice/Connection.rb', line 80 def initialize(=nil, incoming=false, adapterName='', connectionId='') @underlying = @incoming = incoming @adapterName = adapterName @connectionId = connectionId end |
Instance Attribute Details
#adapterName ⇒ Object
Returns the value of attribute adapterName.
87 88 89 |
# File 'lib/Ice/Connection.rb', line 87 def adapterName @adapterName end |
#connectionId ⇒ Object
Returns the value of attribute connectionId.
87 88 89 |
# File 'lib/Ice/Connection.rb', line 87 def connectionId @connectionId end |
#incoming ⇒ Object
Returns the value of attribute incoming.
87 88 89 |
# File 'lib/Ice/Connection.rb', line 87 def incoming @incoming end |
#underlying ⇒ Object
Returns the value of attribute underlying.
87 88 89 |
# File 'lib/Ice/Connection.rb', line 87 def @underlying end |