class AMQ::Protocol::Confirm::SelectOk

Public Class Methods

decode(data) click to toggle source

@return

# File lib/amq/protocol/client.rb, line 2291
def self.decode(data)
  offset = 0
  self.new()
end
encode(channel) click to toggle source

@return

# File lib/amq/protocol/client.rb, line 2305
def self.encode(channel)
  buffer = @packed_indexes.dup
  MethodFrame.new(buffer, channel)
end
has_content?() click to toggle source
# File lib/amq/protocol/client.rb, line 2299
def self.has_content?
  false
end
new() click to toggle source
# File lib/amq/protocol/client.rb, line 2296
def initialize()
end