Module Client.Connection_type

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 =
| Unix of string
| Embed of {
prog : string;
args : string list;
working_dir : string;
env : (string * string) list;
}
| Child