package async_rpc_kernel

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t =
  1. | Closed_locally
    (*

    The RPC implementer closed the pipe.

    *)
  2. | Closed_remotely
    (*

    An error occurred, e.g. a message could not be deserialized. If the connection closes before either side explicitly closes the pipe, it will also go into this case.

    *)
  3. | Error of Core_kernel.Error.t
include sig ... end
val __bin_read_t__ : (int -> t) Core_kernel.Bin_prot.Read.reader
val compare : t -> t -> int
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t
module Stable : sig ... end