You can search for identifiers within the package.
in-package search v0.2.0
Limit the number of jobs
type t
val create : int -> t
create n creates a throttler that allows to run n jobs at once
create n
n
val size : t -> int
How many jobs can run at the same time
val resize : t -> int -> unit fiber
Change the number of jobs that can run at once
val run : t -> f:(unit -> 'a fiber) -> 'a fiber
Execute a fiber, waiting if too many jobs are already running
val running : t -> int
Return the number of jobs currently running