Class: AMQ::Protocol::Connection::TuneOk
- Defined in:
- lib/amq/protocol/client.rb
Class Method Summary collapse
-
.encode(channel_max, frame_max, heartbeat) ⇒ Object
[“channel_max = false”, “frame_max = false”, “heartbeat = false”].
- .has_content? ⇒ Boolean
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”
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
433 434 435 |
# File 'lib/amq/protocol/client.rb', line 433 def self.has_content? false end |