Class: Ice::UDPEndpointInfo
- Inherits:
-
IPEndpointInfo
- Object
- EndpointInfo
- IPEndpointInfo
- Ice::UDPEndpointInfo
- Defined in:
- lib/Ice/Endpoint.rb
Instance Attribute Summary collapse
-
#mcastInterface ⇒ Object
Returns the value of attribute mcastInterface.
-
#mcastTtl ⇒ Object
Returns the value of attribute mcastTtl.
Attributes inherited from IPEndpointInfo
Attributes inherited from EndpointInfo
#compress, #timeout, #underlying
Instance Method Summary collapse
-
#initialize(underlying = nil, timeout = 0, compress = false, host = '', port = 0, sourceAddress = '', mcastInterface = '', mcastTtl = 0) ⇒ UDPEndpointInfo
constructor
A new instance of UDPEndpointInfo.
Constructor Details
#initialize(underlying = nil, timeout = 0, compress = false, host = '', port = 0, sourceAddress = '', mcastInterface = '', mcastTtl = 0) ⇒ UDPEndpointInfo
Returns a new instance of UDPEndpointInfo.
123 124 125 126 127 |
# File 'lib/Ice/Endpoint.rb', line 123 def initialize(=nil, timeout=0, compress=false, host='', port=0, sourceAddress='', mcastInterface='', mcastTtl=0) super(, timeout, compress, host, port, sourceAddress) @mcastInterface = mcastInterface @mcastTtl = mcastTtl end |
Instance Attribute Details
#mcastInterface ⇒ Object
Returns the value of attribute mcastInterface.
129 130 131 |
# File 'lib/Ice/Endpoint.rb', line 129 def mcastInterface @mcastInterface end |
#mcastTtl ⇒ Object
Returns the value of attribute mcastTtl.
129 130 131 |
# File 'lib/Ice/Endpoint.rb', line 129 def mcastTtl @mcastTtl end |