Class: Ice::EndpointInfo
- Inherits:
-
Object
- Object
- Ice::EndpointInfo
- Defined in:
- lib/Ice/Endpoint.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#compress ⇒ Object
Returns the value of attribute compress.
-
#timeout ⇒ Object
Returns the value of attribute timeout.
-
#underlying ⇒ Object
Returns the value of attribute underlying.
Instance Method Summary collapse
-
#initialize(underlying = nil, timeout = 0, compress = false) ⇒ EndpointInfo
constructor
A new instance of EndpointInfo.
Constructor Details
#initialize(underlying = nil, timeout = 0, compress = false) ⇒ EndpointInfo
Returns a new instance of EndpointInfo.
48 49 50 51 52 |
# File 'lib/Ice/Endpoint.rb', line 48 def initialize(=nil, timeout=0, compress=false) @underlying = @timeout = timeout @compress = compress end |
Instance Attribute Details
#compress ⇒ Object
Returns the value of attribute compress.
54 55 56 |
# File 'lib/Ice/Endpoint.rb', line 54 def compress @compress end |
#timeout ⇒ Object
Returns the value of attribute timeout.
54 55 56 |
# File 'lib/Ice/Endpoint.rb', line 54 def timeout @timeout end |
#underlying ⇒ Object
Returns the value of attribute underlying.
54 55 56 |
# File 'lib/Ice/Endpoint.rb', line 54 def @underlying end |