Class: AMQ::Protocol::Basic::ConsumeOk
- Defined in:
- lib/amq/protocol/client.rb
Instance Attribute Summary collapse
-
#consumer_tag ⇒ Object
readonly
Returns the value of attribute consumer_tag.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(consumer_tag) ⇒ ConsumeOk
constructor
A new instance of ConsumeOk.
Methods inherited from Method
encode_body, index, inherited, instantiate, method_id, methods, name, split_headers
Constructor Details
#initialize(consumer_tag) ⇒ ConsumeOk
Returns a new instance of ConsumeOk.
1585 1586 1587 |
# File 'lib/amq/protocol/client.rb', line 1585 def initialize(consumer_tag) @consumer_tag = consumer_tag end |
Instance Attribute Details
#consumer_tag ⇒ Object (readonly)
Returns the value of attribute consumer_tag.
1584 1585 1586 |
# File 'lib/amq/protocol/client.rb', line 1584 def consumer_tag @consumer_tag end |
Class Method Details
.decode(data) ⇒ Object
1575 1576 1577 1578 1579 1580 1581 1582 |
# File 'lib/amq/protocol/client.rb', line 1575 def self.decode(data) offset = 0 length = data[offset, 1].unpack(PACK_CHAR).first offset += 1 consumer_tag = data[offset, length] offset += length self.new(consumer_tag) end |
.has_content? ⇒ Boolean
1589 1590 1591 |
# File 'lib/amq/protocol/client.rb', line 1589 def self.has_content? false end |