1 | <?php |
||
19 | class DumpConsumer implements ConsumerInterface |
||
20 | { |
||
21 | |||
22 | /** |
||
23 | * Callback executed when a message is received. Dumps the message body, delivery_info and properties. |
||
24 | * |
||
25 | * @param AMQPMessage $msg The received message. |
||
26 | * |
||
27 | * @return void |
||
28 | */ |
||
29 | public function execute(AMQPMessage $msg) |
||
49 | } |
||
50 |