JobState is the state of a job. Jobs start their lifecycle as either JobStateAvailable or JobStateScheduled, and if all goes well, transition to JobStateCompleted after they're worked.
| 160 | // JobStateAvailable or JobStateScheduled, and if all goes well, transition to |
| 161 | // JobStateCompleted after they're worked. |
| 162 | type JobState string |
| 163 | |
| 164 | const ( |
| 165 | // JobStateAvailable is the state for jobs that are immediately eligible to |
no outgoing calls
no test coverage detected