getDockerWorkerStatus {ManagedCloudProvider} | R Documentation |
Get the worker status
Description
Get the worker status. Unless you have a faster implementation, you only need to
define getDockerWorkerStatus
. The function should return a character vector with
each element corresponding to a worker in workerHandles
.
Each element must be one of three possible characters "initializing"
, "running"
or
"stopped"
. There is no default method for getDockerWorkerStatus
.
Usage
getDockerWorkerStatus(provider, cluster, workerHandles, verbose)
IsDockerWorkerInitializing(provider, cluster, workerHandles, verbose)
IsDockerWorkerRunning(provider, cluster, workerHandles, verbose)
IsDockerWorkerStopped(provider, cluster, workerHandles, verbose)
## S4 method for signature 'DummyManagedProvider'
getDockerWorkerStatus(provider, cluster, workerHandles, verbose)
## S4 method for signature 'ANY'
IsDockerWorkerInitializing(provider, cluster, workerHandles, verbose = 0L)
## S4 method for signature 'ANY'
IsDockerWorkerRunning(provider, cluster, workerHandles, verbose = 0L)
## S4 method for signature 'ANY'
IsDockerWorkerStopped(provider, cluster, workerHandles, verbose = 0L)
Arguments
provider |
S4 |
cluster |
S4 |
workerHandles |
Character(n). A character vector of unique instance handles. |
verbose |
Integer. The verbose level, default 1. |
Value
getDockerWorkerStatus
: A character vector with each element corresponding
to an instance in workerHandles
. Each element must be one of three possible characters
"initializing"
, "running"
or "stopped"
IsDockerWorkerInitializing
, IsDockerWorkerRunning
, IsDockerWorkerStopped
:
A logical vector with each element corresponding to the status of each instance
Functions
-
getDockerWorkerStatus,DummyManagedProvider-method
: The method for the dummy managed provider