package distributed

  1. Overview
  2. Docs

A unit of computation which can be executed on a remote host.

module type S = sig ... end
module Make (I : NonBlockIO) (M : Message_type) : S with type message_type = M.t and type 'a io = 'a I.t and type logger = I.logger

Functor to create a S.