| ClusterFuture-class {future} | R Documentation |
A cluster future is a future whose value will be resolved asynchronously in a parallel process
Description
A cluster future is a future whose value will be resolved asynchronously in a parallel process
Usage
ClusterFuture(
expr = NULL,
substitute = TRUE,
envir = parent.frame(),
persistent = FALSE,
workers = NULL,
...
)
MultisessionFuture(
expr = NULL,
substitute = TRUE,
envir = parent.frame(),
persistent = FALSE,
workers = NULL,
...
)
Arguments
expr |
An R expression. |
substitute |
If TRUE, argument |
envir |
The environment from where global objects should be identified. |
persistent |
If FALSE, the evaluation environment is cleared from objects prior to the evaluation of the future. |
workers |
A |
... |
Additional named elements passed to |
Value
ClusterFuture() returns an object of class ClusterFuture.
MultisessionFuture() returns an object of class MultisessionFuture,
which inherits from ClusterFuture.
Usage
To use 'cluster' futures, use plan(cluster, ...), cf. cluster.
To use 'multisession' futures, use plan(multisession, ...), cf. multisession.