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
.
getDockerStaticData(x)setDockerStaticData(x, staticData)
# S4 method for CloudConfig
getDockerStaticData(x)
# S4 method for CloudConfig
setDockerStaticData(x, staticData)
# S4 method for DockerCluster
getDockerStaticData(x)
# S4 method for DockerCluster
setDockerStaticData(x, staticData)
# S4 method for DockerContainer
getDockerStaticData(x)
# S4 method for DockerContainer
setDockerStaticData(x, staticData)
The object which the static data will be extracted from or the object that will hold the unserialized data.
The data returned by getDockerStaticData
getDockerStaticData: Any data that is serializable setDockerStaticData: No return value should be expected, the object that is passed to the function will be updated.
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