delete.BatchJobsFuture: Removes a BatchJobs future

Description Usage Arguments Value

View source: R/BatchJobsFuture-class.R

Description

Removes a BatchJobs future

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## S3 method for class 'BatchJobsFuture'
delete(
  future,
  onRunning = c("warning", "error", "skip"),
  onFailure = c("error", "warning", "ignore"),
  onMissing = c("ignore", "warning", "error"),
  times = 10L,
  delta = getOption("future.wait.interval", 1),
  alpha = getOption("future.wait.alpha", 1.01),
  ...
)

Arguments

future

The future.

onRunning

Action if future is running or appears to run.

onFailure

Action if failing to delete future.

onMissing

Action if future does not exist.

times

The number of tries before giving up.

delta

The delay interval (in seconds) between retries.

alpha

A multiplicative penalty increasing the delay for each failed try.

...

Not used.

Value

(invisibly) TRUE if deleted and FALSE otherwise.


HenrikBengtsson/future.BatchJobs documentation built on Feb. 15, 2021, 3:17 a.m.