Class: AMQ::Protocol::Connection::TuneOk

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_max, frame_max, heartbeat) ⇒ Object

u’channel_max = false’, u’frame_max = false’, u’heartbeat = false’

Returns:



366
367
368
369
370
371
372
373
# File 'lib/amq/protocol/client.rb', line 366

def self.encode(channel_max, frame_max, heartbeat)
  channel = 0
  buffer = @packed_indexes.dup
  buffer << [channel_max].pack(PACK_UINT16)
  buffer << [frame_max].pack(PACK_UINT32)
  buffer << [heartbeat].pack(PACK_UINT16)
  MethodFrame.new(buffer, channel)
end

.has_content?Boolean

Returns:

  • (Boolean)


360
361
362
# File 'lib/amq/protocol/client.rb', line 360

def self.has_content?
  false
end