A BatchJobs future is a future whose value will be resolved via BatchJobs
BatchJobsFuture(
  expr = NULL,
  envir = parent.frame(),
  substitute = TRUE,
  globals = TRUE,
  packages = NULL,
  label = "BatchJobs",
  conf = NULL,
  cluster.functions = NULL,
  resources = list(),
  workers = NULL,
  job.delay = FALSE,
  finalize = getOption("future.finalize", TRUE),
  ...
)The R expression to be evaluated
The environment in which global environment should be located.
Controls whether expr should be
substitute():d or not.
(optional) a logical, a character vector, a named list, or a Globals object.  If TRUE, globals are identified by code inspection based on expr and tweak searching from environment envir.  If FALSE, no globals are used.  If a character vector, then globals are identified by lookup based their names globals searching from environment envir.  If a named list or a Globals object, the globals are used as is.
(optional) Label of the future (where applicable, becomes the job name for most job schedulers).
A BatchJobs configuration environment.
A BatchJobs ClusterFunctions object.
A named list passed to the BatchJobs template (available as variable resources).
(optional) Additional specification for the BatchJobs backend.
(optional) Passed as is to submitJobs().
If TRUE, any underlying registries are deleted when this object is garbage collected, otherwise not.
Additional arguments passed to Future().
A BatchJobsFuture object