package current_rpc

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Client-side API to contact a job service.

type t = [ `Job_8397ef9078537247 ] Capnp_rpc_lwt.Capability.t
type id = string
type status = {
  1. id : id;
  2. description : string;
  3. can_cancel : bool;
  4. can_rebuild : bool;
}
val log : start:int64 -> t -> (string * int64, [> `Capnp of Capnp_rpc.Error.t ]) Stdlib.result Lwt.t

log ~start t returns bytes from the log starting at offset start.

val cancel : t -> (unit, [> `Capnp of Capnp_rpc.Error.t ]) Stdlib.result Lwt.t
val status : t -> (status, [> `Capnp of Capnp_rpc.Error.t ]) Stdlib.result Lwt.t
val rebuild : t -> t

rebuild t requests a rebuild of t and returns the new job.

val approve_early_start : t -> (unit, [> `Capnp of Capnp_rpc.Error.t ]) Stdlib.result Lwt.t