package sihl-contract

  1. Overview
  2. Docs
val dispatch : 'a t -> ?delay:Sihl_core.Time.duration -> 'a -> unit Lwt.t

dispatch job ?delay input queues job for processing while input input is the input that the job needs to run. Use delay to run the job earliest after a certain amount of time.

val register_jobs : 'a t list -> unit Lwt.t

register_jobs jobs registers jobs that can be dispatched.

Only registered jobs can be dispatched. Dispatching a job that was not registered does nothing.

val register : ?jobs:'a t list -> unit -> Sihl_core.Container.Service.t