Class: AMQ::Protocol::Basic::Return

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(reply_code, reply_text, exchange, routing_key) ⇒ Return

Returns a new instance of Return.



1848
1849
1850
1851
1852
1853
# File 'lib/amq/protocol/client.rb', line 1848

def initialize(reply_code, reply_text, exchange, routing_key)
  @reply_code = reply_code
  @reply_text = reply_text
  @exchange = exchange
  @routing_key = routing_key
end

Instance Attribute Details

#exchangeObject (readonly)

Returns the value of attribute exchange.



1847
1848
1849
# File 'lib/amq/protocol/client.rb', line 1847

def exchange
  @exchange
end

#reply_codeObject (readonly)

Returns the value of attribute reply_code.



1847
1848
1849
# File 'lib/amq/protocol/client.rb', line 1847

def reply_code
  @reply_code
end

#reply_textObject (readonly)

Returns the value of attribute reply_text.



1847
1848
1849
# File 'lib/amq/protocol/client.rb', line 1847

def reply_text
  @reply_text
end

#routing_keyObject (readonly)

Returns the value of attribute routing_key.



1847
1848
1849
# File 'lib/amq/protocol/client.rb', line 1847

def routing_key
  @routing_key
end

Class Method Details

.decode(data) ⇒ Object

Returns:



1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
# File 'lib/amq/protocol/client.rb', line 1828

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
  reply_code = data[offset, 2].unpack(PACK_UINT16).first
  offset += 2
  length = data[offset, 1].unpack(PACK_CHAR).first
  offset += 1
  reply_text = data[offset, length]
  offset += length
  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(reply_code, reply_text, exchange, routing_key)
end

.has_content?Boolean

Returns:

  • (Boolean)


1855
1856
1857
# File 'lib/amq/protocol/client.rb', line 1855

def self.has_content?
  true
end