Removes a BatchJobs future
# S3 method for 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),
...
)
The future.
Action if future is running or appears to run.
Action if failing to delete future.
Action if future does not exist.
The number of tries before giving up.
The delay interval (in seconds) between retries.
A multiplicative penalty increasing the delay for each failed try.
Not used.
(invisibly) TRUE if deleted and FALSE otherwise.