jobSetState {rstudioapi} | R Documentation |
Set Job State
Description
Changes the state of a job.
Usage
jobSetState(
job,
state = c("idle", "running", "succeeded", "cancelled", "failed")
)
Arguments
job |
The ID of the job on which to change state. |
state |
The new job state. |
States
The following states are supported:
- idle
The job is waiting to run.
- running
The job is actively running.
- succeeded
The job has finished successfully.
- cancelled
The job was cancelled.
- failed
The job finished but did not succeed.
See Also
Other jobs: jobAddOutput()
,
jobAddProgress()
, jobAdd()
,
jobRemove()
, jobRunScript()
,
jobSetProgress()
, jobSetStatus()
[Package rstudioapi version 0.13 Index]