NAME
Net::RabbitFoot - An Asynchronous and multi channel Perl AMQP client.
SYNOPSIS
use Net::RabbitFoot;
my $rf = Net::RabbitFoot->new()->load_xml_spec(
'/path/to/amqp0-8.xml',
)->connect(
host => 'localhosti',
port => 5672,
user => 'guest',
port => 'guest',
vhost => '/',
timeout => 1,
);
my $ch = $rf->open_channel();
$ch->declare_exchange(exchange => 'test_exchange');
DESCRIPTION
Net::RabbitFoot is an AMQP(Advanced Message Queuing Protocol) client library, that is intended to allow you to interact with AMQP-compliant message brokers/servers such as RabbitMQ in an asynchronous fashion.
You can use Net::RabbitFoot to -
* Declare and delete exchanges
* Declare, delete, bind and unbind queues
* Set QoS
* Publish, consume, get, ack and recover messages
* Select, commit and rollback transactions
Net::RabbitFoot is known to work with RabbitMQ versions 1.7.2 and version 0-8 of the AMQP specification.
AUTHOR
Masahito Ikuta <cooldaemon@gmail.com>
SEE ALSO
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.