Class/Module Index [+]

Quicksearch

AMQ::Protocol::MethodFrame

Public Instance Methods

decode_payload() click to toggle source
# File lib/amq/protocol/frame.rb, line 101
def decode_payload
  self.method_class.decode(@payload[4..-1])
end
final?() click to toggle source
# File lib/amq/protocol/frame.rb, line 97
def final?
  !self.method_class.has_content?
end
method_class() click to toggle source
# File lib/amq/protocol/frame.rb, line 89
def method_class
  @method_class ||= begin
                      klass_id, method_id = self.payload.unpack(PACK_UINT16_X2)
                      index               = klass_id << 16 | method_id
                      AMQ::Protocol::METHODS[index]
                    end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.