Module CCPool.Make
Create a new Pool
Parameters
Signature
val run2 : ('a -> 'b -> _) -> 'a -> 'b -> unit
val run3 : ('a -> 'b -> 'c -> _) -> 'a -> 'b -> 'c -> unit
val set_exn_handler : (exn -> unit) -> unit
val active : unit -> bool
active ()
is true as long asstop()
has not been called yet.
val stop : unit -> unit
After calling
stop ()
, most functions will raise Stopped. This has the effect of preventing new tasks from being executed.
module Fut : sig ... end