Description Usage Arguments Value Functions
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
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 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)
|
provider |
S4 |
cluster |
S4 |
workerHandles |
Character(n). A character vector of unique instance handles. |
verbose |
Integer. The verbose level, default 1. |
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
getDockerWorkerStatus,DummyManagedProvider-method
: The method for the dummy managed provider
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.