('worker, 'query, 'response) Function.t is a type-safe function 'query ->
'response Deferred.t that can only be run on a 'worker.
start_app command should be called from the top-level in order to start the parallel
application. command must be constructed with a call to Command.async so that the
Async scheduler is started. This function will parse certain environment variables and
determine whether to start as a master or a worker.
rpc_max_message_size, rpc_heartbeat_config, where_to_listen specify the RPC
server that the master starts.
implementations are additional implementations that the master will implement.
Expert
module instead of start_app.