package async

  1. Overview
  2. Docs

A persistent connection is one that is automatically reestablished whenever lost.

module type S = sig ... end
module type S_rpc = sig ... end
module Make (Conn : Closable) : S with type conn = Conn.t
module Rpc : S_rpc with type conn = Async.Rpc.Connection.t