Class: AMQ::Protocol::Basic::Recover

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:



1971
1972
1973
1974
1975
1976
1977
1978
# File 'lib/amq/protocol/client.rb', line 1971

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)


1965
1966
1967
# File 'lib/amq/protocol/client.rb', line 1965

def self.has_content?
  false
end