R/AAA.R

#' The root class for the managed cloud provider
#'
#' @field serverHandle Character(1), the server handle that can be recognized by the
#' cloud provider.
#' @field workerHandles Character(n), a list object for internal use only.
#' Please call `.getWorkerHandles(cluster)` to access the worker handles
#' @field workerPerHandle An internal counter. Please call `.getWorkerHandles(cluster)`
#' to access the worker handles
#' @exportClass ManagedCloudProvider
.ManagedCloudProvider <- setRefClass(
    "ManagedCloudProvider",
    fields = list(
        serverHandle = "character",
        workerHandles = "character",
        workerPerHandle = "integer"
    ),
    contains = "CloudProvider"
)

Try the ManagedCloudProvider package in your browser

Any scripts or data that you put into this service are public.

ManagedCloudProvider documentation built on June 14, 2021, 9:06 a.m.