sig
  type ('a, 'kind) t_ = ('a, 'kind) Throttle.t_
  type 'a t = ('a, [ `throttle ]) t_
  val invariant : 'Core.Std.Invariant.inv -> 'a t Core.Std.Invariant.inv
  val create : continue_on_error:bool -> max_concurrent_jobs:int -> unit t
  val create_with : continue_on_error:bool -> 'a list -> 'a t
  type 'a outcome = [ `Aborted | `Ok of '| `Raised of exn ]
  val enqueue' :
    ('a, 'c) t_ -> ('-> 'Deferred.t) -> 'b outcome Deferred.t
  val enqueue : ('a, 'c) t_ -> ('-> 'Deferred.t) -> 'Deferred.t
  val prior_jobs_done : ('a, 'b) t_ -> unit Deferred.t
  val max_concurrent_jobs : ('a, 'b) t_ -> int
  val num_jobs_running : ('a, 'b) t_ -> int
  val num_jobs_waiting_to_start : ('a, 'b) t_ -> int
  val capacity_available : ('a, 'b) t_ -> unit Deferred.t
  module Sequencer :
    sig
      type 'a t = ('a, [ `sequencer ]) t_
      val create : ?continue_on_error:bool -> '-> 'a t
      val sexp_of_t : ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
    end
  val sexp_of_t_ :
    ('-> Sexplib.Sexp.t) ->
    ('kind -> Sexplib.Sexp.t) -> ('a, 'kind) t_ -> Sexplib.Sexp.t
  val sexp_of_t : ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
end