package rpc_parallel

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'worker functions

A type to encapsulate all the functions that can be run on this worker. Using a record type here is often the most convenient and readable.

module Worker_state : sig ... end

State associated with each Worker.t. If this state is mutable, you must think carefully when making multiple connections to the same spawned worker.

module Connection_state : sig ... end

State associated with each connection to a Worker.t

module Functions (C : sig ... end) : sig ... end

The functions that can be run on this worker type