package sihl

  1. Overview
  2. Docs
type scheduled_time
val pp_scheduled_time : Ppx_deriving_runtime.Format.formatter -> scheduled_time -> Ppx_deriving_runtime.unit
val show_scheduled_time : scheduled_time -> Ppx_deriving_runtime.string
type t = {
  1. label : string;
  2. scheduled_time : scheduled_time;
  3. fn : unit -> unit Lwt.t;
}
type stop_schedule = unit -> unit
val get_function : t -> unit -> unit Lwt.t
val run_in : t -> now:'a -> float
val scheduled_function : t -> unit -> unit Lwt.t
val create : scheduled_time -> (unit -> unit Lwt.t) -> string -> t
val every_second : scheduled_time
val every_hour : scheduled_time
val log_src : Logs.src
module Logs : Logs.LOG
val registered_schedules : t list Stdlib.ref
val schedule : t -> unit -> unit
val start : 'a -> 'b Lwt.t
val stop : 'a -> unit Lwt.t
val lifecycle : Sihl__.Core_lifecycle.lifecycle
val register : t list -> Sihl__.Core_service.t