class AMQ::Protocol::Connection::Unblocked

Public Class Methods

decode(data) click to toggle source

@return

# File lib/amq/protocol/client.rb, line 557
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
  self.new()
end
encode() click to toggle source

@return

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