Implements AMQP specifications and implements amqp interop interfaces. Build on top of bunny lib.
- Installation
- Create context
- Declare topic
- Declare queue
- Bind queue to topic
- Send message to topic
- Send message to queue
- Send priority message
- Send expiration message
- Send delayed message
- Consume message
- Purge queue messages
$ composer require enqueue/amqp-bunny
<?php
use Enqueue\AmqpBunny\AmqpConnectionFactory;
// connects to localhost
$factory = new AmqpConnectionFactory();
// same as above
$factory = new AmqpConnectionFactory('amqp:');
// same as above
$factory = new AmqpConnectionFactory([]);
// connect to AMQP broker at example.com
$factory = new AmqpConnectionFactory([
'host' => 'example.com',
'port' => 1000,
'vhost' => '/',
'user' => 'user',
'pass' => 'pass',
'persisted' => false,
]);
// same as above but given as DSN string
$factory = new AmqpConnectionFactory('amqp://user:pass@example.com:10000/%2f');
$psrContext = $factory->createContext();
// if you have enqueue/enqueue library installed you can use a function from there to create the context
$psrContext = \Enqueue\dsn_to_context('amqp:');
$psrContext = \Enqueue\dsn_to_context('amqp+bunny:');
Declare topic operation creates a topic on a broker side.
<?php
use Interop\Amqp\AmqpTopic;
/** @var \Enqueue\AmqpBunny\AmqpContext $psrContext */
$fooTopic = $psrContext->createTopic('foo');
$fooTopic->setType(AmqpTopic::TYPE_FANOUT);
$psrContext->declareTopic($fooTopic);
// to remove topic use delete topic method
//$psrContext->deleteTopic($fooTopic);
Declare queue operation creates a queue on a broker side.
<?php
use Interop\Amqp\AmqpQueue;
/** @var \Enqueue\AmqpBunny\AmqpContext $psrContext */
$fooQueue = $psrContext->createQueue('foo');
$fooQueue->addFlag(AmqpQueue::FLAG_DURABLE);
$psrContext->declareQueue($fooQueue);
// to remove topic use delete queue method
//$psrContext->deleteQueue($fooQueue);
Connects a queue to the topic. So messages from that topic comes to the queue and could be processed.
<?php
use Interop\Amqp\Impl\AmqpBind;
/** @var \Enqueue\AmqpBunny\AmqpContext $psrContext */
/** @var \Interop\Amqp\Impl\AmqpQueue $fooQueue */
/** @var \Interop\Amqp\Impl\AmqpTopic $fooTopic */
$psrContext->bind(new AmqpBind($fooTopic, $fooQueue));
<?php
/** @var \Enqueue\AmqpBunny\AmqpContext $psrContext */
/** @var \Interop\Amqp\Impl\AmqpTopic $fooTopic */
$message = $psrContext->createMessage('Hello world!');
$psrContext->createProducer()->send($fooTopic, $message);
<?php
/** @var \Enqueue\AmqpBunny\AmqpContext $psrContext */
/** @var \Interop\Amqp\Impl\AmqpQueue $fooQueue */
$message = $psrContext->createMessage('Hello world!');
$psrContext->createProducer()->send($fooQueue, $message);
<?php
/** @var \Enqueue\AmqpExt\AmqpContext $psrContext */
$fooQueue = $psrContext->createQueue('foo');
$fooQueue->addFlag(AmqpQueue::FLAG_DURABLE);
$fooQueue->setArguments(['x-max-priority' => 10]);
$psrContext->declareQueue($fooQueue);
$message = $psrContext->createMessage('Hello world!');
$psrContext->createProducer()
->setPriority(5) // the higher priority the sooner a message gets to a consumer
//
->send($fooQueue, $message)
;
<?php
/** @var \Enqueue\AmqpExt\AmqpContext $psrContext */
/** @var \Interop\Amqp\Impl\AmqpQueue $fooQueue */
$message = $psrContext->createMessage('Hello world!');
$psrContext->createProducer()
->setTimeToLive(60000) // 60 sec
//
->send($fooQueue, $message)
;
AMQP specification says nothing about message delaying hence the producer throws DeliveryDelayNotSupportedException
.
Though the producer (and the context) accepts a delivry delay strategy and if it is set it uses it to send delayed message.
The enqueue/amqp-tools
package provides two RabbitMQ delay strategies, to use them you have to install that package
<?php
use Enqueue\AmqpTools\RabbitMqDlxDelayStrategy;
/** @var \Enqueue\AmqpExt\AmqpContext $psrContext */
/** @var \Interop\Amqp\Impl\AmqpQueue $fooQueue */
// make sure you run "composer require enqueue/amqp-tools".
$message = $psrContext->createMessage('Hello world!');
$psrContext->createProducer()
->setDelayStrategy(new RabbitMqDlxDelayStrategy())
->setDeliveryDelay(5000) // 5 sec
->send($fooQueue, $message)
;
<?php
/** @var \Enqueue\AmqpBunny\AmqpContext $psrContext */
/** @var \Interop\Amqp\Impl\AmqpQueue $fooQueue */
$consumer = $psrContext->createConsumer($fooQueue);
$message = $consumer->receive();
// process a message
$consumer->acknowledge($message);
// $consumer->reject($message);
<?php
/** @var \Enqueue\AmqpBunny\AmqpContext $psrContext */
/** @var \Interop\Amqp\Impl\AmqpQueue $fooQueue */
$queue = $psrContext->createQueue('aQueue');
$psrContext->purgeQueue($queue);