package odisco

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type stage = Pipeline.stage
type grouping = Pipeline.grouping
type label = Pipeline.label
type disco = {
  1. jobname : string;
  2. jobfile : string;
  3. stage : stage;
  4. grouping : grouping;
  5. group_label : label;
  6. group_node : string option;
  7. task_id : int;
  8. hostname : string;
  9. input_label : label;
  10. input_url : string;
  11. input_path : string;
  12. input_size : int;
  13. out_channel : label:label -> Pervasives.out_channel;
  14. log : string -> unit;
  15. temp_dir : string;
}
module type TASK = sig ... end