package amqp-client

  1. Overview
  2. Docs
exception Connection_closed

Basic Amqp types

exception Channel_closed of int
exception Channel_not_found of int
exception Unknown_frame_type of int
exception No_handler_found
exception Consumer_cancelled of string
exception Busy
type class_id = int
type method_id = int
type message_id = class_id * method_id
type bit = bool
and octet = int
and short = int
and long = int
and longlong = int
and shortstr = string
and longstr = string
and timestamp = int
and decimal = {
  1. digits : int;
  2. value : int;
}
and table = (string * value) list
and array = value list
and value =
  1. | VBoolean of bool
  2. | VShortshort of int
  3. | VShort of int
  4. | VLong of int
  5. | VLonglong of int
  6. | VShortstr of string
  7. | VLongstr of string
  8. | VFloat of float
  9. | VDouble of float
  10. | VDecimal of decimal
  11. | VTable of table
  12. | VArray of value list
  13. | VTimestamp of int
  14. | VUnit of unit
type header = string * value
val print_type : string -> value -> unit