Queue.Unbind
This method unbinds a queue from an exchange.
type t = {
queue : queue_name;
Specifies the name of the queue to unbind.
*)exchange : exchange_name;
The name of the exchange to unbind from.
*)routing_key : Amqp_client_lib.Types.shortstr;
Specifies the routing key of the binding to unbind.
*)arguments : Amqp_client_lib.Types.table;
Specifies the arguments of the binding to unbind.
*)}
val init :
queue:'a ->
exchange:queue_name ->
routing_key:exchange_name ->
arguments:Amqp_client_lib.Types.shortstr ->
unit ->
Amqp_client_lib.Types.table ->
t
val request : (Framing.t * Framing.channel_no) -> t -> unit Thread.Deferred.t