Id jobs from the deleted records.
Optional
state: stringLooks for unlocked jobs in the active queue.
The job was being worked on, but the worker process died and it failed to renew the lock. We call these jobs 'stalled'. This is the most common case. We resolve these by moving them back to wait to be re-processed. To prevent jobs from cycling endlessly between active and wait, (e.g. if the job handler keeps crashing), we limit the number stalled job recoveries to settings.maxStalledCount.
Optional
jobId: stringMove parent job to waiting-children state.
true if job is successfully moved, false if there are pending dependencies.
Optional
opts: MoveToWaitingChildrenOptsAttempts to reprocess a job
Returns a promise that evaluates to a return code: 1 means the operation was a success 0 means the job does not exist -1 means the job is currently locked and can't be retried. -2 means the job was not found in the expected set
Remove jobs in a specific state.