Scroll to navigation

AnyEvent::RabbitMQ::Channel(3pm) User Contributed Perl Documentation AnyEvent::RabbitMQ::Channel(3pm)

NAME

AnyEvent::RabbitMQ::Channel - Abstraction of an AMQP channel.

SYNOPSIS

    my $ch = $rf->open_channel();
    $ch->declare_exchange(exchange => 'test_exchange');

DESCRIPTION

A RabbitMQ channel.

A channel is a light-weight virtual connection within a TCP connection to a RabbitMQ broker.

ARGUMENTS FOR "open_channel"

Callback invoked when the channel closes. Callback will be passed the incoming message that caused the close, if any.
Callback invoked when a mandatory or immediate message publish fails. Callback will be passed the incoming message, with accessors "method_frame", "header_frame", and "body_frame".

METHODS

declare_exchange (%args)

Declare an exchange (to publish messages to) on the server.

Arguments:

Default 'direct'
Default 0
Default 0
Default 0
Default 0
The name of the exchange

bind_exchange

Binds an exchange to another exchange, with a routing key.

Arguments:

The name of the source exchange to bind
The name of the destination exchange to bind
The routing key to bind with

unbind_exchange

delete_exchange

declare_queue

Declare a queue (create it if it doesn't exist yet) for publishing messages to on the server.

  my $done    = AnyEvent->condvar;
  $channel->declare_queue(
     exchange    => $queue_exchange,
     queue       => $queueName,
     durable     => 0,
     auto_delete => 1,
     passive     => 0,
     arguments   => { 'x-expires' => 0, },
     on_success  => sub { $done->send; },
     on_failure  => sub {
         say "Unable to create queue $queueName";
         $done->send;
     },
  );
  $done->recv;

Arguments:

Name of the queue to be declared. If the queue name is the empty string, RabbitMQ will create a unique name for the queue. This is useful for temporary/private reply queues.
Callback that is called when the queue was declared successfully. The argument to the callback is of type Net::AMQP::Frame::Method. To get the name of the Queue (if you declared it with an empty name), you can say

    on_success => sub {
        my $method = shift;
        my $name   = $method->method_frame->queue;
    };
    
Callback that is called when the declaration of the queue has failed.
0 or 1, default 0
0 or 1, default 0
0 or 1, default 0
0 or 1, default 0
0 or 1, default 1
default 0
"arguments" is a hashref of additional parameters which RabbitMQ extensions may use. This list is not complete and your RabbitMQ server configuration will determine which arguments are valid and how they act.
The queue will automatically be removed after being idle for this many milliseconds.

Default of 0 disables automatic queue removal.

bind_queue

Binds a queue to an exchange, with a routing key.

Arguments:

The name of the queue to bind
The name of the exchange to bind
The routing key to bind with

unbind_queue

purge_queue

Flushes the contents of a queue.

delete_queue

Deletes a queue. The queue may not have any active consumers.

consume

Subscribe to consume messages from a queue.

Arguments:

The name of the queue to be consumed from.
Callback called with an argument of the message which has been consumed.

The message is a hash reference, where the value to key "header" is an object of type Net::AMQP::Protocol::Basic::ContentHeader, body is a Net::AMQP::Frame::Body, and "deliver" a Net::AMQP::Frame::Method.

Callback called if consumption is cancelled. This may be at client request or as a side effect of queue deletion. (Notification of queue deletion is a RabbitMQ extension.)
Identifies this consumer, will be auto-generated if you do not provide it, but you must supply a value if you want to be able to later cancel the subscription.
Callback called if the subscription was successful (before the first message is consumed).
Callback called if the subscription fails for any reason.
Pass through the "no_ack" flag. Defaults to 1. If set to 1, the server will not expect messages to be acknowledged.

publish

Publish a message to an exchange.

Arguments:

The name of the exchange to send the message to.
The routing key with which to publish the message.
Hash of AMQP message header info, including the confusingly similar element "headers", which may contain arbitrary string key/value pairs.
The text body of the message to send.
Boolean; if true, then if the message doesn't land in a queue (e.g. the exchange has no bindings), it will be "returned." (see "on_return")
Boolean; if true, then if the message cannot be delivered directly to a consumer, it will be "returned." (see "on_return")
Callback called with the frame that acknowledges receipt (if channel is in confirm mode), typically Net::AMQP::Protocol::Basic::Ack.
Callback called with the frame that declines receipt (if the channel is in confirm mode), typically Net::AMQP::Protocol::Basic::Nack or Net::AMQP::Protocol::Channel::Close.
In AMQP, a "returned" message is one that cannot be delivered in compliance with the "immediate" or "mandatory" flags.

If in confirm mode, this callback will be called with the frame that reports message return, typically Net::AMQP::Protocol::Basic::Return. If confirm mode is off or this callback is not provided, then the channel or connection objects' on_return callbacks (if any), will be called instead.

NOTE: If confirm mode is on, the on_ack or on_nack callback will be called whether or not on_return is called first.

cancel

Cancel a queue subscription.

Note that the cancellation will not take place at once, and further messages may be consumed before the subscription is cancelled. No further messages will be consumed after the on_success callback has been called.

Arguments:

Identifies this consumer, needs to be the value supplied when the queue is initially consumed from.
Callback called if the subscription was successfully cancelled.
Callback called if the subscription could not be cancelled for any reason.

get

Try to get a single message from a queue.

Arguments:

Mandatory. Name of the queue to try to receive a message from.
Will be called either with either a message, or, if the queue is empty, a notification that there was nothing to collect from the queue.
This callback will be called if an error is signalled on this channel.
0 or 1, default 1

ack

qos

confirm

Put channel into confirm mode. In confirm mode, publishes are confirmed by the server, so the on_ack callback of publish works.

recover

select_tx

commit_tx

rollback_tx

AUTHOR, COPYRIGHT AND LICENSE

See AnyEvent::RabbitMQ for author(s), copyright and license.

2021-09-12 perl v5.32.1