@return
# File lib/amq/protocol/client.rb, line 413 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
# File lib/amq/protocol/client.rb, line 427 def self.has_content? false end
# File lib/amq/protocol/client.rb, line 423 def initialize(known_hosts) @known_hosts = known_hosts end