package ocluster-worker

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val max_chunk_size : int64
type t = {
  1. data : Stdlib.Buffer.t;
  2. mutable cond : [ `Running of unit Lwt_condition.t | `Finished ];
}
val create : unit -> t
val stream : t -> start:int64 -> (string * int64) Lwt.t
val write : t -> string -> unit
val copy_from_stream : t -> Lwt_io.input_channel -> unit Lwt.t
val close : t -> unit
val info : t -> ('a, Stdlib.Format.formatter, unit, unit, unit, unit) Stdlib.format6 -> 'b