The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::Async::AMQP - provides client interface to AMQP using IO::Async

VERSION

Version 0.008

SYNOPSIS

 use IO::Async::Loop;
 use Net::Async::AMQP;
 my $loop = IO::Async::Loop->new;
 $loop->add(my $amqp = Net::Async::AMQP->new);
 $amqp->connect(
   host => 'localhost',
   username => 'guest',
   password => 'guest',
   on_connected => sub {
   }
 );

DESCRIPTION

ACCESSORS

METHODS

PROXIED METHODS

The following methods are proxied to the Net::Async::AMQP class.

cancel

Cancels the given consumer.

delete

Deletes this queue.

SEE ALSO

AUTHOR

Tom Molesworth <cpan@entitymodel.com>

LICENSE

Licensed under the same terms as Perl itself.