File: OOBBody.pm

package info (click to toggle)
libnet-amqp-perl 0.06~dfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 304 kB
  • sloc: perl: 933; makefile: 10
file content (35 lines) | stat: -rw-r--r-- 701 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package Net::AMQP::Frame::OOBBody;

=head1 NAME

Net::AMQP::Frame::OOBBody - AMQP wire-level out-of-band body Frame object

=head1 DESCRIPTION 

Inherits from L<Net::AMQP::Frame::Body>.

=cut

use strict;
use warnings;
use base qw(Net::AMQP::Frame::Body);

__PACKAGE__->type_id(6);

=head1 SEE ALSO

L<Net::AMQP::Frame::Body>

=head1 COPYRIGHT

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.

=head1 AUTHOR

Eric Waters <ewaters@gmail.com>

=cut

1;