package amqp-client-async

  1. Overview
  2. Docs

This method delivers a message to the client following a get method. A message delivered by 'get-ok' must be acknowledged unless the no-ack option was set in the get method.

type t = {
  1. delivery_tag : delivery_tag;
  2. redelivered : redelivered;
  3. exchange : exchange_name;
    (*

    Specifies the name of the exchange that the message was originally published to. If empty, the message was published to the default exchange.

    *)
  4. routing_key : Amqp_client_lib.Types.shortstr;
    (*

    Specifies the routing key name specified when the message was published.

    *)
  5. message_count : message_count;
}
val init : delivery_tag:delivery_tag -> redelivered:redelivered -> exchange:exchange_name -> routing_key:Amqp_client_lib.Types.shortstr -> message_count:message_count -> unit -> t