package amqp-client-async

  1. Overview
  2. Docs

This method asks the peer to pause or restart the flow of content data sent by a consumer. This is a simple flow-control mechanism that a peer can use to avoid overflowing its queues or otherwise finding itself receiving more messages than it can process. Note that this method is not intended for window control. It does not affect contents returned by Basic.Get-Ok methods.

type t = {
  1. active : Amqp_client_lib.Types.bit;
    (*

    If 1, the peer starts sending content frames. If 0, the peer stops sending content frames.

    *)
}
val init : active:Amqp_client_lib.Types.bit -> unit -> t
val reply : ?once:bool -> (Framing.t * Framing.channel_no) -> (t -> Flow_ok.t Thread.Deferred.t) -> unit Thread.Deferred.t