Removes a task from the queue and or buffer

rs_delete(task_id, user, purge = FALSE)

Arguments

task_id

AppEEARS task id

user

username used to sign up

purge

if TRUE, remove all previously finished tasks from the task list (default = FALSE)

Value

returns the content of the API call

Author

Koen Hufkens

Examples


if (FALSE) {
# delete a single task
rs_delete(
  user = "your_user_name",
  task_id = "a_task_id"
)

# delete all finished or crashed
# jobs (if not deleted previously)
rs_delete(
  user = "your_user_name",
  purge = TRUE
)
}