Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
val src : Logs.src
val pp_script_job : Stdlib.Format.formatter -> script_job -> unit
val pp_orb_build_job : Stdlib.Format.formatter -> orb_build_job -> unit
val pp_execution_result : Stdlib.Format.formatter -> execution_result -> unit
val pp_period : Stdlib.Format.formatter -> period -> unit
val pp_job : Stdlib.Format.formatter -> job -> unit
val job_name : job -> string
val pp_schedule_item : Stdlib.Format.formatter -> schedule_item -> unit
type info = {
schedule : schedule_item list;
queue : job list;
running : (Ptime.t * Uuidm.t * script_job) list;
}
val pp_info : Stdlib.Format.formatter -> info -> unit
type cmd =
| Client_hello of int
| Server_hello of int
| Job_requested
| Job_schedule of Uuidm.t * script_job
| Job_finished of Uuidm.t * execution_result * data
| Output of Uuidm.t * string
| Schedule of period * script_job
| Unschedule of string
| Info
| Info_reply of info
| Observe of Uuidm.t
| Execute of string
| Schedule_orb_build of period * orb_build_job
| Reschedule of string * Ptime.t * period option
| Client_hello2 of [ `Client | `Worker ] * int
| Server_hello2
val pp_cmd : Stdlib.Format.formatter -> cmd -> unit
val pp_state_item : Stdlib.Format.formatter -> state_item -> unit
type state = state_item list
val pp_state : state_item list Fmt.t
module Asn : sig ... end
val read_cmd : Unix.file_descr -> (cmd, [> `Msg of string ]) Rresult.result
val write_cmd :
Unix.file_descr ->
cmd ->
(unit, [> `Msg of string ]) Stdlib.result