mirror of
https://github.com/ocaml-tracing/ocaml-opentelemetry.git
synced 2026-03-09 12:23:32 -04:00
17 lines
258 B
OCaml
17 lines
258 B
OCaml
module type IO = Generic_io.S
|
|
|
|
module type S = sig
|
|
module IO : IO
|
|
|
|
type t
|
|
|
|
val create : unit -> t
|
|
|
|
val delete : t -> unit
|
|
|
|
val trigger : t -> unit
|
|
|
|
val wait : t -> unit IO.t
|
|
|
|
val register_bounded_queue : t -> _ Bounded_queue.Recv.t -> unit
|
|
end
|