Class: AMQ::Protocol::Connection::OpenOk

Inherits:
Method
  • Object
show all
Defined in:
lib/amq/protocol/client.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Method

encode_body, index, inherited, instantiate, method_id, methods, name, split_headers

Constructor Details

#initialize(known_hosts) ⇒ OpenOk

Returns a new instance of OpenOk.



516
517
518
# File 'lib/amq/protocol/client.rb', line 516

def initialize(known_hosts)
  @known_hosts = known_hosts
end

Instance Attribute Details

#known_hostsObject (readonly)

Returns the value of attribute known_hosts.



515
516
517
# File 'lib/amq/protocol/client.rb', line 515

def known_hosts
  @known_hosts
end

Class Method Details

.decode(data) ⇒ Object

Returns:



506
507
508
509
510
511
512
513
# File 'lib/amq/protocol/client.rb', line 506

def self.decode(data)
  offset = 0
  length = data[offset, 1].unpack(PACK_CHAR).first
  offset += 1
  known_hosts = data[offset, length]
  offset += length
  self.new(known_hosts)
end

.has_content?Boolean

Returns:

  • (Boolean)


520
521
522
# File 'lib/amq/protocol/client.rb', line 520

def self.has_content?
  false
end