package vcaml

  1. Overview
  2. Docs

A value of type Connection_type.t describes the type of connection to use, along with the information necessary to construct the Msgpack_rpc channel.

type t =
  1. | Unix of string
  2. | Embed of {
    1. prog : string;
    2. args : string list;
    3. working_dir : string;
    4. env : (string * string) list;
    }
  3. | Child