Class: AMQ::Protocol::Channel::Open
- Defined in:
- lib/amq/protocol/client.rb
Class Method Summary collapse
-
.encode(channel, out_of_band) ⇒ Object
[u’out_of_band = EMPTY_STRING’].
- .has_content? ⇒ Boolean
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’
673 674 675 676 677 678 |
# File 'lib/amq/protocol/client.rb', line 673 def self.encode(channel, out_of_band) buffer = @packed_indexes.dup buffer << out_of_band.to_s.bytesize.chr buffer << out_of_band.to_s MethodFrame.new(buffer, channel) end |
.has_content? ⇒ Boolean
667 668 669 |
# File 'lib/amq/protocol/client.rb', line 667 def self.has_content? false end |