forked from rabbitmq/rabbitmq-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
worker.php
39 lines (29 loc) · 944 Bytes
/
worker.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
// composer require enqueue/amqp-bunny
require_once __DIR__.'/vendor/autoload.php';
use Enqueue\AmqpBunny\AmqpConnectionFactory;
use Interop\Amqp\AmqpQueue;
$config = [
'host' => 'localhost',
'port' => 5672,
'user' => 'guest',
'pass' => 'guest',
'receive_method' => 'basic_consume',
];
$connection = new AmqpConnectionFactory($config);
$context = $connection->createContext();
$context->setQos(0, 1, false);
$queue = $context->createQueue('task_queue');
$queue->addFlag(AmqpQueue::FLAG_DURABLE);
$context->declareQueue($queue);
$consumer = $context->createConsumer($queue);
echo ' [*] Waiting for messages. To exit press CTRL+C', "\n";
while (true) {
if ($message = $consumer->receive()) {
echo ' [x] Received ', $message->getBody(), "\n";
sleep(substr_count($message->getBody(), '.'));
echo ' [x] Done', "\n";
$consumer->acknowledge($message);
}
}
$context->close();