package sihl-queue

  1. Overview
  2. Docs
include module type of struct include Sihl.Contract.Queue end
type 'a t = {
  1. name : string;
  2. input_to_string : 'a -> string option;
  3. string_to_input : string option -> ('a, string) Result.t;
  4. handle : 'a -> (unit, string) Result.t Lwt.t;
  5. failed : string -> (unit, string) Result.t Lwt.t;
  6. max_tries : int;
  7. retry_delay : Sihl__.Core_time.duration;
}
val name : string
module type Sig = Sihl.Contract.Queue.Sig
val to_sexp : 'a t -> Sexplib0.Sexp.t
val pp : Stdlib.Format.formatter -> 'a t -> unit
val default_tries : int
val default_retry_delay : Sihl__.Core_time.duration
val create : name:string -> input_to_string:('a -> string option) -> string_to_input:(string option -> ('b, string) Result.t) -> handle:('c -> (unit, string) Result.t Lwt.t) -> ?failed:(string -> (unit, string) Lwt_result.t) -> unit -> 'd t
val set_max_tries : int -> 'a t -> 'b t
val set_retry_delay : Sihl__.Core_time.duration -> 'a t -> 'b t
val log_src : Logs.src
module Logs : Logs.LOG
val registered_jobs : Workable_job.t list Stdlib.ref
val stop_schedule : (unit -> unit) option Stdlib.ref
module Job_instance : sig ... end
module Workable_job : sig ... end
module Make (Repo : sig ... end) : Sihl.Contract.Queue.Sig
module InMemory : sig ... end
module MariaDb : sig ... end
module PostgreSql : sig ... end
OCaml

Innovation. Community. Security.