| getDockerStaticData {DockerParallel} | R Documentation |
get/set docker cluster static data
Description
get/set docker cluster static data.
These functions are designed for the reconnect function for DockerCluster.
The return value can be serialized and used by the cloud provider to recover
the DockerCluster object. The default method for DockerCluster will
use getDockerStaticData to get the static data in cloudConfig, ServerContainer
and WorkerContainer.
Usage
getDockerStaticData(x)
setDockerStaticData(x, staticData)
## S4 method for signature 'CloudConfig'
getDockerStaticData(x)
## S4 method for signature 'CloudConfig'
setDockerStaticData(x, staticData)
## S4 method for signature 'DockerCluster'
getDockerStaticData(x)
## S4 method for signature 'DockerCluster'
setDockerStaticData(x, staticData)
## S4 method for signature 'DockerContainer'
getDockerStaticData(x)
## S4 method for signature 'DockerContainer'
setDockerStaticData(x, staticData)
Arguments
x |
The object which the static data will be extracted from or the object that will hold the unserialized data. |
staticData |
The data returned by |
Value
getDockerStaticData: Any data that is serializable setDockerStaticData: No return value should be expected, the object that is passed to the function will be updated.
Functions
-
getDockerStaticData,CloudConfig-method: The method for CloudConfig -
setDockerStaticData,CloudConfig-method: The method for CloudConfig -
getDockerStaticData,DockerCluster-method: The method for DockerCluster -
setDockerStaticData,DockerCluster-method: The method for DockerCluster -
getDockerStaticData,DockerContainer-method: The method for DockerContainer -
setDockerStaticData,DockerContainer-method: The method for DockerContainer