mirror of
https://github.com/ocaml-tracing/ocaml-opentelemetry.git
synced 2026-03-10 04:35:46 -04:00
7 lines
281 B
OCaml
7 lines
281 B
OCaml
(** Bounded queue based on simple synchronization primitives.
|
|
|
|
This is not the fastest queue but it should be versatile. *)
|
|
|
|
val create : high_watermark:int -> unit -> 'a Bounded_queue.t
|
|
(** [create ~high_watermark ()] creates a new bounded queue based on
|
|
{!Sync_queue} *)
|