Id jobs from the deleted records.
Optionalstate: 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.
OptionaljobId: stringMove parent job to waiting-children state.
true if job is successfully moved, false if there are pending dependencies.
Optionalopts: 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
It checks if the job in the top of the delay set should be moved back to the top of the wait queue (so that it will be processed as soon as possible)
Remove jobs in a specific state.