package sihl-queue
-
sihl-queue
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type t = {
name : string;
work : string option -> (unit, string) Result.t Lwt.t;
failed : string -> (unit, string) Result.t Lwt.t;
max_tries : int;
retry_delay : Sihl_core.Time.duration;
}
val of_job : 'a Sihl_contract.Queue.t -> t