Amqpx.Queue.bind
You're seeing just the function
bind
, go back to Amqpx.Queue module for more information.
Link to this function
bind(channel, queue, exchange, options \\ [])
Specs
bind(Amqpx.Channel.t(), Amqpx.Basic.queue(), Amqpx.Basic.exchange(), keyword()) :: :ok | Amqpx.Basic.error()
Binds a Queue to an Exchange.
Options
:routing_key
- The routing key used to bind the queue to the exchange. Defaults to""
.:no_wait
- Iftrue
, the binding is not synchronous. Defaults tofalse
.:arguments
- A list of arguments to pass when binding (of typeAmqpx.arguments/0
). See the README for more information. Defaults to[]
.