Class: AMQ::Protocol::Connection::Unblocked
- Defined in:
- lib/amq/protocol/client.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize ⇒ Unblocked
constructor
A new instance of Unblocked.
Methods inherited from Method
encode_body, index, inherited, instantiate, method_id, methods, name, split_headers
Constructor Details
#initialize ⇒ Unblocked
Returns a new instance of Unblocked.
561 562 |
# File 'lib/amq/protocol/client.rb', line 561 def initialize() end |
Class Method Details
.decode(data) ⇒ Object
556 557 558 559 |
# File 'lib/amq/protocol/client.rb', line 556 def self.decode(data) offset = offset = 0 # self-assigning offset to eliminate "assigned but unused variable" warning even if offset is not used in this method self.new() end |
.encode ⇒ Object
[]
570 571 572 573 574 |
# File 'lib/amq/protocol/client.rb', line 570 def self.encode() channel = 0 buffer = @packed_indexes.dup MethodFrame.new(buffer, channel) end |
.has_content? ⇒ Boolean
564 565 566 |
# File 'lib/amq/protocol/client.rb', line 564 def self.has_content? false end |