Removes a task from the queue and or buffer
rs_delete(task_id, user, purge = FALSE)
AppEEARS task id
username used to sign up
if TRUE, remove all previously finished tasks from the task list (default = FALSE)
returns the content of the API call
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
)
}