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

“requeue = false”

Returns:



1949
1950
1951
1952
1953
1954
1955
1956
# File 'lib/amq/protocol/client.rb', line 1949

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)


1943
1944
1945
# File 'lib/amq/protocol/client.rb', line 1943

def self.has_content?
  false
end