Module Distributed
This module provides modules to create distribtued computations. Distributed comutations are described using the Process. Process provides a monadic interface to describe distributed computations.
- author
- essdotteedot <essdotteedot_at_gmail_dot_com>
- version
- 0.6.0
module Node_id : sig ... endThis module provides a type representing a node id.
module Process_id : sig ... endThis module provides a type representing a process id.
module type Nonblock_io = sig ... endAbstract type which can perform monadic concurrent IO.
module type Message_type = sig ... endThe abstract type representing the messages that will be sent between processes.
module type Process = sig ... endA unit of computation which can be executed on a local or remote host, is monadic.
module Make : functor (I : Nonblock_io) -> functor (M : Message_type) -> Process with type message_type = M.t and type 'a io = 'a I.tFunctor to create a module of type
Processgiven a message moduleMof typeMessage_type.