Class: AMQ::Protocol::Channel::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(channel_id) ⇒ OpenOk

Returns a new instance of OpenOk.



655
656
657
# File 'lib/amq/protocol/client.rb', line 655

def initialize(channel_id)
  @channel_id = channel_id
end

Instance Attribute Details

#channel_idObject (readonly)

Returns the value of attribute channel_id.



654
655
656
# File 'lib/amq/protocol/client.rb', line 654

def channel_id
  @channel_id
end

Class Method Details

.decode(data) ⇒ Object

Returns:



645
646
647
648
649
650
651
652
# File 'lib/amq/protocol/client.rb', line 645

def self.decode(data)
  offset = 0
  length = data[offset, 4].unpack(PACK_UINT32).first
  offset += 4
  channel_id = data[offset, length]
  offset += length
  self.new(channel_id)
end

.has_content?Boolean

Returns:

  • (Boolean)


659
660
661
# File 'lib/amq/protocol/client.rb', line 659

def self.has_content?
  false
end