package tezos-protocol-environment

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'o t = [
  1. | `Ok of 'o
  2. | `OkStream of 'o stream
  3. | `Created of string option
  4. | `No_content
  5. | `Unauthorized of Error_monad.error list option
  6. | `Forbidden of Error_monad.error list option
  7. | `Not_found of Error_monad.error list option
  8. | `Conflict of Error_monad.error list option
  9. | `Error of Error_monad.error list option
]

Return type for service handler

and 'a stream = {
  1. next : unit -> 'a option Lwt.t;
  2. shutdown : unit -> unit;
}
val return : 'o -> 'o t Lwt.t
val return_stream : 'o stream -> 'o t Lwt.t
val not_found : 'o t Lwt.t
val fail : Error_monad.error list -> 'a t Lwt.t