dispatcher | R Documentation |
Dispatches tasks from a host to daemons for processing, using FIFO
scheduling, queuing tasks as required. Daemon / dispatcher settings are
controlled by daemons()
and this function should not need to be called
directly.
dispatcher(host, url = NULL, n = 0L, ...)
host |
the character URL dispatcher should dial in to, typically an IPC address. |
url |
the character URL dispatcher should listen at (and daemons should dial in to), including the port to connect to e.g. tcp://hostname:5555' or 'tcp://10.75.32.70:5555'. Specify 'tls+tcp://' to use secure TLS connections. |
n |
[default 0L] if specified, the integer number of daemons to be launched locally by the host process. |
... |
(optional) additional arguments passed through to |
The network topology is such that a dispatcher acts as a gateway between the host and daemons, ensuring that tasks received from the host are dispatched on a FIFO basis for processing. Tasks are queued at the dispatcher to ensure tasks are only sent to daemons that can begin immediate execution of the task.
Invisible NULL.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.