* Defines a processing function for the jobs placed into a given Queue. * * The callback is called everytime a job is placed in the queue. * It is passed an instance of the job as first argument. * * If the callback signature contains the second optional done argument,
(callback: ProcessCallbackFunction<T>)
| 598 | * If it is resolved, its value will be the "completed" event's second argument. |
| 599 | */ |
| 600 | process(callback: ProcessCallbackFunction<T>): Promise<void>; |
| 601 | process(callback: ProcessPromiseFunction<T>): Promise<void>; |
| 602 | process(callback: string): Promise<void>; |
| 603 |
no outgoing calls
no test coverage detected