Class: AMQ::Protocol::Basic::GetOk

Inherits:
Method
  • Object
show all
Defined in:
lib/amq/protocol/client.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Method

encode_body, index, inherited, instantiate, method_id, methods, name, split_headers

Constructor Details

#initialize(delivery_tag, redelivered, exchange, routing_key, message_count) ⇒ GetOk

Returns a new instance of GetOk.



1835
1836
1837
1838
1839
1840
1841
# File 'lib/amq/protocol/client.rb', line 1835

def initialize(delivery_tag, redelivered, exchange, routing_key, message_count)
  @delivery_tag = delivery_tag
  @redelivered = redelivered
  @exchange = exchange
  @routing_key = routing_key
  @message_count = message_count
end

Instance Attribute Details

#delivery_tagObject (readonly)

Returns the value of attribute delivery_tag.



1834
1835
1836
# File 'lib/amq/protocol/client.rb', line 1834

def delivery_tag
  @delivery_tag
end

#exchangeObject (readonly)

Returns the value of attribute exchange.



1834
1835
1836
# File 'lib/amq/protocol/client.rb', line 1834

def exchange
  @exchange
end

#message_countObject (readonly)

Returns the value of attribute message_count.



1834
1835
1836
# File 'lib/amq/protocol/client.rb', line 1834

def message_count
  @message_count
end

#redeliveredObject (readonly)

Returns the value of attribute redelivered.



1834
1835
1836
# File 'lib/amq/protocol/client.rb', line 1834

def redelivered
  @redelivered
end

#routing_keyObject (readonly)

Returns the value of attribute routing_key.



1834
1835
1836
# File 'lib/amq/protocol/client.rb', line 1834

def routing_key
  @routing_key
end

Class Method Details

.decode(data) ⇒ Object

Returns:



1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
# File 'lib/amq/protocol/client.rb', line 1814

def self.decode(data)
  offset = 0
  delivery_tag = AMQ::Hacks.unpack_64_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
  message_count = data[offset, 4].unpack(PACK_UINT32).first
  offset += 4
  self.new(delivery_tag, redelivered, exchange, routing_key, message_count)
end

.has_content?Boolean

Returns:

  • (Boolean)


1843
1844
1845
# File 'lib/amq/protocol/client.rb', line 1843

def self.has_content?
  true
end