Module Distributed_lwtSource

A lwt based implementation of Distributed. Note, that this lwt based implmentation depends on the Logs_lwt library. In keeping with the usage conventions of the Logs library, this implementation does not define a source, it does not set the log level, and it does not define a reporter. The application is expected to define a source, set the log level, and define a reporter (see the examples).

Sourcemodule type CustomerLogger = sig ... end

This module provides a Log_lwt based logger to use.

Functor to create a module of type Distributed.Process given a message module M of type Distributed.Message_type and a custom logger module L of type CustomerLogger.