AnyMQ-AMQP
view release on metacpan or search on metacpan
NAME
AnyMQ::AMQP - AMQP binding for AnyMQ
SYNOPSIS
use AnyMQ;
my $bus = AnyMQ->new_with_traits(traits => ['AMQP'],
host => 'localhost',
port => 5672,
user => 'guest',
pass => 'guest',
vhost => '/',
exchange => 'foo',
);
my $client = $bus->new_listener($bus->topic("foo"));
$client->poll(sub { my $msg = shift;
# ...
});
DESCRIPTION
AnyMQ::AMQP is AnyMQ trait to work with AMQP servers.
AUTHOR
Chia-liang Kao <clkao@clkao.org>
LICENSE
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
SEE ALSO
( run in 1.118 second using v1.01-cache-2.11-cpan-2398b32b56e )