getDockerWorkerNumbers {DockerParallel} | R Documentation |
Get the worker number on the cloud
Description
Get the worker number on the cloud. Return a list with two elements,
which are the number of initializing and running workers. The names must
be "initializing"
and "running"
. The default method will
return list(initializing = 0L, running = .getExpectedWorkerNumber(cluster))
Usage
getDockerWorkerNumbers(provider, cluster, verbose)
## S4 method for signature 'ANY'
getDockerWorkerNumbers(provider, cluster, verbose = 0L)
Arguments
provider |
S4 |
cluster |
S4 |
verbose |
Integer. The verbose level, default 1. |
Value
list(initializing = ?, running = ?)
.
Functions
-
getDockerWorkerNumbers,ANY-method
: The default getDockerWorkerNumbers method. Returnc(0L, .getExpectedWorkerNumber(cluster))
[Package DockerParallel version 1.0.4 Index]