class AMQ::Protocol::BodyFrame

Public Instance Methods

decode_payload() click to toggle source
# File lib/amq/protocol/frame.rb, line 179
def decode_payload
  @payload
end
final?() click to toggle source
# File lib/amq/protocol/frame.rb, line 183
def final?
  # we cannot know whether it is final or not so framing code in amq-client
  # checks this over the entire frameset. MK.
  false
end