bschmitt / laravel-amqp

AMQP wrapper for Laravel and Lumen to publish and consume messages
MIT License
268 stars 86 forks source link

Need some suggestion on AMQP Consume #50

Closed Prakashg07 closed 5 years ago

Prakashg07 commented 5 years ago

I am looking to bind a queue with exchange and routing key while consuming. Do anyone help me out to achieve the above using this (bschmitt/laravel-amqp) library?

I have to do something like below: $binding_key = 'black'; $channel->queue_bind($queue_name, $exchange_name, $binding_key);

Will the below code works:

$connection = new AMQP(); $channel = $connection->channel(); $channel->queue_bind($queue_name, $exchange_name, $binding_key);

Will be great if anyone suggest me with the working code.

stevenklar commented 5 years ago

What exactly did you try? Everything you mention is in the documentation?

Down below is also a custom exchange example.