package fuseau

  1. Overview
  2. Docs

Cancelation handle.

type t = {
  1. cancel : unit -> unit;
}

A handle to cancel atomic actions (waiting on something)

val cancel : t -> unit
val make : cancel:(unit -> unit) -> unit -> t
val dummy : t