Class: AMQ::Protocol::Basic::RecoverAsync

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

Class Method Summary collapse

Methods inherited from Method

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

Class Method Details

.encode(channel, requeue) ⇒ Object

u’requeue = false’

Returns:



2057
2058
2059
2060
2061
2062
2063
2064
# File 'lib/amq/protocol/client.rb', line 2057

def self.encode(channel, requeue)
  buffer = ''
  buffer << @packed_indexes
  bit_buffer = 0
  bit_buffer = bit_buffer | (1 << 0) if requeue
  buffer << [bit_buffer].pack(PACK_CHAR)
  MethodFrame.new(buffer, channel)
end

.has_content?Boolean

Returns:

  • (Boolean)


2051
2052
2053
# File 'lib/amq/protocol/client.rb', line 2051

def self.has_content?
  false
end