forked from rabbitmq/rabbitmq-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
receive_logs.php
51 lines (39 loc) · 1.19 KB
/
receive_logs.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
40
41
42
43
44
45
46
47
48
49
50
51
<?php
//Establish connection to AMQP
$connection = new AMQPConnection();
$connection->setHost('127.0.0.1');
$connection->setLogin('guest');
$connection->setPassword('guest');
$connection->connect();
//setup channel connection
$channel = new AMQPChannel($connection);
$callback_func = function(AMQPEnvelope $message, AMQPQueue $q) use (&$max_jobs) {
echo " [x] Received: ", $message->getBody(), PHP_EOL;
sleep(1);
$q->nack($message->getDeliveryTag());
};
try {
//Declare Exchange
$exchange_name = 'logs';
$exchange = new AMQPExchange($channel);
$exchange->setType(AMQP_EX_TYPE_FANOUT);
$exchange->setName($exchange_name);
$exchange->declareExchange();
$queue = new AMQPQueue($channel);
$queue->setFlags(AMQP_EXCLUSIVE); //allow server to define name
$queue->declareQueue();
$queue->bind($exchange_name,$queue->getName());
echo ' [*] Waiting for logs. To exit press CTRL+C', PHP_EOL;
$queue->consume($callback_func);
} catch(AMQPQueueException $ex) {
print_r($ex);
} catch(AMQPExchangeException $ex) {
print_r($ex);
} catch(AMQPChannelException $ex) {
print_r($ex);
} catch(AMQPConnectionException $ex) {
print_r($ex);
} catch(Exception $ex) {
print_r($ex);
}
$connection->disconnect();