module Timeout:sig..end
Delayed actions.
type t
val add : int -> (unit -> unit) -> tadd delay action will execute action () (in the main thread) after the
delay of delay ms.
val add_ignore : int -> (unit -> unit) -> unitSame as add except that this does not return the Timeout element.
val cancel : t -> unitCancel the Timeout.