package current

  1. Overview
  2. Docs
type 'a or_error = ('a, [ `Msg of string ]) Stdlib.result
type stats = {
  1. ok : int;
  2. ready : int;
  3. running : int;
  4. failed : int;
  5. blocked : int;
}

Counters showing how many pipeline stages are in each state.

module type T = sig ... end
module type ORDERED = sig ... end
module type ANALYSIS = sig ... end
module type TERM = sig ... end
module type EXECUTOR = sig ... end