Cancel one or more tasks
Value
A logical vector the same length as id
indicating if the
task was cancelled. This will be FALSE
if the task was already
completed, not running, etc.
Examples
cleanup <- hipercow_example_helper()
#> ℹ This example uses a special helper
ids <- c(task_create_expr(Sys.sleep(2)), task_create_expr(runif(1)))
#> ✔ Submitted task '76e00c5d06e425273ea58f99a3c8393a' using 'example'
#> ✔ Submitted task '1a4dea027c86dd0d96265e5e3f690376' using 'example'
# The first task may or not be cancelled (depends on if it was
# started already) but the second one will almost certainly be
# cancelled:
task_cancel(ids)
#> ✔ Successfully cancelled 2 tasks
#> [1] TRUE TRUE
cleanup()
#> ℹ Cleaning up example