Queue.Sigmodule Job : sig ... endThis is the description of a job. A job dispatch is a job description and some arguments/input.
module JobInstance : sig ... endThis is the actual job instance that is derived from the job description 'a Job.t and some input. This needs to be serialized and persisted for persistent job queues.
module type REPO = sig ... endmodule type SERVICE = sig ... end