AnyEvent-RabbitMQ-PubSub
view release on metacpan or search on metacpan
lib/AnyEvent/RabbitMQ/PubSub.pm view on Meta::CPAN
$cv->croak(longmess(
sprintf '%s: %s',
$method_frame->reply_code || 503,
$method_frame->reply_text || 'Something went wrong.',
));
}
else {
$cv->croak(longmess(Dumper($why)));
}
}
1;
__END__
=encoding utf-8
=head1 NAME
AnyEvent::RabbitMQ::PubSub - Publish and consume RabbitMQ messages.
=head1 SYNOPSIS
# print 'received Hello World' and exit
use AnyEvent;
use AnyEvent::RabbitMQ::PubSub;
use AnyEvent::RabbitMQ::PubSub::Publisher;
use AnyEvent::RabbitMQ::PubSub::Consumer;
my ($rmq_connection, $channel) = AnyEvent::RabbitMQ::PubSub::connect(
host => 'localhost',
port => 5672,
user => 'guest',
pass => 'guest',
vhost => '/',
);
my $exchange = {
exchange => 'my_test_exchange',
type => 'topic',
durable => 0,
auto_delete => 1,
};
my $queue = {
queue => 'my_test_queue';
auto_delete => 1,
};
my $routing_key = 'my_rk';
my $cv = AnyEvent->condvar;
my $consumer = AnyEvent::RabbitMQ::PubSub::Consumer->new(
channel => $channel,
exchange => $exchange,
queue => $queue,
routing_key => $routing_key,
);
$consumer->init(); #declares channel, queue and binding
$consumer->consume(
$cv,
sub {
my ($consumer, $msg) = @_;
print 'received ', $msg->{body}->payload, "\n";
$consumer->ack($msg);
$cv->send();
},
);
my $publisher = AnyEvent::RabbitMQ::PubSub::Publisher->new(
channel => $channel,
exchange => $exchange,
routing_key => $routing_key,
);
$publisher->init(); #declares exchange;
$publisher->publish(body => 'Hello World');
$cv->recv();
=head1 DESCRIPTION
AnyEvent::RabbitMQ::PubSub allows to easily create publishers and consumers
of RabbitMQ messages.
=head1 LICENSE
Copyright (C) Avast Software.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=head1 AUTHOR
Miroslav Tynovsky E<lt>tynovsky@avast.comE<gt>
=cut
( run in 2.463 seconds using v1.01-cache-2.11-cpan-8f98c5d2c55 )