Class: Ice::EndpointInfo

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

Instance Attribute Summary collapse

Instance Method Summary collapse

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(underlying=nil, timeout=0, compress=false)
    @underlying = underlying
    @timeout = timeout
    @compress = compress
end

Instance Attribute Details

#compressObject

Returns the value of attribute compress.



54
55
56
# File 'lib/Ice/Endpoint.rb', line 54

def compress
  @compress
end

#timeoutObject

Returns the value of attribute timeout.



54
55
56
# File 'lib/Ice/Endpoint.rb', line 54

def timeout
  @timeout
end

#underlyingObject

Returns the value of attribute underlying.



54
55
56
# File 'lib/Ice/Endpoint.rb', line 54

def underlying
  @underlying
end