| Net-AMQP documentation | Contained in the Net-AMQP distribution. |
Net::AMQP::Frame::Body - AMQP wire-level body Frame object
Inherits from Net::AMQP::Frame.
Copyright (c) 2009 Eric Waters and XMission LLC (http://www.xmission.com/). All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
Eric Waters <ewaters@gmail.com>
| Net-AMQP documentation | Contained in the Net-AMQP distribution. |
package Net::AMQP::Frame::Body;
use strict; use warnings; use base qw(Net::AMQP::Frame); __PACKAGE__->type_id(3); our $VERSION = 0.01; sub parse_payload { my $self = shift; # Nothing to be done; it's already there } sub to_raw_payload { my $self = shift; return $self->payload; }
1;