Amqpx.Exchange.delete
You're seeing just the function
delete
, go back to Amqpx.Exchange module for more information.
Link to this function
delete(channel, exchange, options \\ [])
Specs
delete(Amqpx.Channel.t(), Amqpx.Basic.exchange(), keyword()) :: :ok | Amqpx.Basic.error()
Deletes an Exchange by name. When an Exchange is deleted all bindings to it are also deleted.
Options
:if_unused
- If set, the server will only delete the exchange if it has no queue bindings.:no_wait
- If set, the delete operation is asynchronous. Defaults tofalse
.