You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 23, 2018. It is now read-only.
I'd like to provide a high level API for talking to rabbit.
Consider:
my $channel = $broker->channel_open();
my $sub = $channel->subscribe(
consume flags here
);
$sub->handler(sub {
my ( $message ) = @_;
# do something with $message
});
...
$sub->recv();
...
$sub->cancel();
I'd like to be able to tie into various callbacks through a API that looks simpler than the raw AMQP method calls.
The text was updated successfully, but these errors were encountered: