Module Rpc_parallel__.Parallel_intf
module type Function = sig ... endA
('worker, 'query, 'response) Function.tis a type-safe function'query -> 'response Deferred.tthat can only be run on a'worker. Under the hood it represents an Async Rpc protocol that we know a'workerwill implement.
module type Worker = sig ... endmodule type Functions = sig ... endmodule type Creator = sig ... endmodule type Worker_spec = sig ... endSpecification for the creation of a worker type
module type Parallel = sig ... end