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

“channel_max = false”, “frame_max = false”, “heartbeat = false”

Returns:



439
440
441
442
443
444
445
446
447
# File 'lib/amq/protocol/client.rb', line 439

def self.encode(channel_max, frame_max, heartbeat)
  channel = 0
  buffer = ""
  buffer << @packed_indexes
  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)


433
434
435
# File 'lib/amq/protocol/client.rb', line 433

def self.has_content?
  false
end