Up

Module Sequencer

A sequencer is a throttle that is specialized to only allow one job at a time and to, by default, not continue on error.

Signature

type t
val sexp_of_t : t -> Sexplib.Sexp.t
val create : ?continue_on_error:bool -> ?burst_size:int -> ?sustained_rate_per_sec:float -> unit -> t
val enqueue_exn : t -> ?allow_immediate_run:bool -> ('a -> unit) -> 'a -> unit
val enqueue' : t -> ('a -> 'b Import.Deferred.t) -> 'a -> 'b Outcome.t Import.Deferred.t
type 'a u = t
include Common with type 'a t := 'a u
type _ t
val kill : _ t -> unit

kills t, which aborts all enqueued jobs that haven't started and all jobs enqueued in the future. If t has already been killed, then calling kill t has no effect. Note that kill does not effect currently running jobs in any way.

val is_dead : _ t -> bool

is_dead t returns true if t was killed, either by kill or by an unhandled exception in a job.

val to_limiter : _ t -> limiter

Convert to a limiter