Learn R Programming

appeears (version 1.2)

rs_delete: Delete AppEEARS task from queue

Description

Removes a task from the queue and or buffer

Usage

rs_delete(task_id, user, purge = FALSE)

Value

returns the content of the API call

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)

Author

Koen Hufkens

Examples

Run this code

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
)
}

Run the code above in your browser using DataLab