Class: Ice::ConnectionInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/Ice/Connection.rb

Direct Known Subclasses

IPConnectionInfo, WSConnectionInfo

Instance Attribute Summary collapse

Instance Method Summary collapse

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(underlying=nil, incoming=false, adapterName='', connectionId='')
    @underlying = underlying
    @incoming = incoming
    @adapterName = adapterName
    @connectionId = connectionId
end

Instance Attribute Details

#adapterNameObject

Returns the value of attribute adapterName.



87
88
89
# File 'lib/Ice/Connection.rb', line 87

def adapterName
  @adapterName
end

#connectionIdObject

Returns the value of attribute connectionId.



87
88
89
# File 'lib/Ice/Connection.rb', line 87

def connectionId
  @connectionId
end

#incomingObject

Returns the value of attribute incoming.



87
88
89
# File 'lib/Ice/Connection.rb', line 87

def incoming
  @incoming
end

#underlyingObject

Returns the value of attribute underlying.



87
88
89
# File 'lib/Ice/Connection.rb', line 87

def underlying
  @underlying
end