Class: AMQ::Protocol::Basic::Deliver
- Defined in:
- lib/amq/protocol/client.rb
Instance Attribute Summary collapse
-
#consumer_tag ⇒ Object
readonly
Returns the value of attribute consumer_tag.
-
#delivery_tag ⇒ Object
readonly
Returns the value of attribute delivery_tag.
-
#exchange ⇒ Object
readonly
Returns the value of attribute exchange.
-
#redelivered ⇒ Object
readonly
Returns the value of attribute redelivered.
-
#routing_key ⇒ Object
readonly
Returns the value of attribute routing_key.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(consumer_tag, delivery_tag, redelivered, exchange, routing_key) ⇒ Deliver
constructor
A new instance of Deliver.
Methods inherited from Method
encode_body, index, inherited, instantiate, method_id, methods, name, split_headers
Constructor Details
#initialize(consumer_tag, delivery_tag, redelivered, exchange, routing_key) ⇒ Deliver
Returns a new instance of Deliver.
1819 1820 1821 1822 1823 1824 1825 |
# File 'lib/amq/protocol/client.rb', line 1819 def initialize(consumer_tag, delivery_tag, redelivered, exchange, routing_key) @consumer_tag = consumer_tag @delivery_tag = delivery_tag @redelivered = redelivered @exchange = exchange @routing_key = routing_key end |
Instance Attribute Details
#consumer_tag ⇒ Object (readonly)
Returns the value of attribute consumer_tag.
1818 1819 1820 |
# File 'lib/amq/protocol/client.rb', line 1818 def consumer_tag @consumer_tag end |
#delivery_tag ⇒ Object (readonly)
Returns the value of attribute delivery_tag.
1818 1819 1820 |
# File 'lib/amq/protocol/client.rb', line 1818 def delivery_tag @delivery_tag end |
#exchange ⇒ Object (readonly)
Returns the value of attribute exchange.
1818 1819 1820 |
# File 'lib/amq/protocol/client.rb', line 1818 def exchange @exchange end |
#redelivered ⇒ Object (readonly)
Returns the value of attribute redelivered.
1818 1819 1820 |
# File 'lib/amq/protocol/client.rb', line 1818 def redelivered @redelivered end |
#routing_key ⇒ Object (readonly)
Returns the value of attribute routing_key.
1818 1819 1820 |
# File 'lib/amq/protocol/client.rb', line 1818 def routing_key @routing_key end |
Class Method Details
.decode(data) ⇒ Object
1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 |
# File 'lib/amq/protocol/client.rb', line 1796 def self.decode(data) offset = 0 length = data[offset, 1].unpack(PACK_CHAR).first offset += 1 consumer_tag = data[offset, length] offset += length delivery_tag = AMQ::Pack.unpack_uint64_big_endian(data[offset, 8]).first offset += 8 bit_buffer = data[offset, 1].unpack(PACK_CHAR).first offset += 1 redelivered = (bit_buffer & (1 << 0)) != 0 length = data[offset, 1].unpack(PACK_CHAR).first offset += 1 exchange = data[offset, length] offset += length length = data[offset, 1].unpack(PACK_CHAR).first offset += 1 routing_key = data[offset, length] offset += length self.new(consumer_tag, delivery_tag, redelivered, exchange, routing_key) end |
.has_content? ⇒ Boolean
1827 1828 1829 |
# File 'lib/amq/protocol/client.rb', line 1827 def self.has_content? true end |