Class: AMQ::Protocol::Channel::Open

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

Class Method Summary collapse

Methods inherited from Method

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

Class Method Details

.encode(channel, out_of_band) ⇒ Object

u’out_of_band = EMPTY_STRING’

Returns:



628
629
630
631
632
633
634
# File 'lib/amq/protocol/client.rb', line 628

def self.encode(channel, out_of_band)
  buffer = ''
  buffer << @packed_indexes
  buffer << out_of_band.to_s.bytesize.chr
  buffer << out_of_band.to_s
  MethodFrame.new(buffer, channel)
end

.has_content?Boolean

Returns:

  • (Boolean)


622
623
624
# File 'lib/amq/protocol/client.rb', line 622

def self.has_content?
  false
end