* Returns a promise that resolves when the queue is paused. * * A paused queue will not process new jobs until resumed, but current jobs being processed will continue until * they are finalized. The pause can be either global or local. If global, all workers in all queue instances
(isLocal?: boolean, doNotWaitActive?: boolean)
| 729 | * Pausing a queue that is already paused does nothing. |
| 730 | */ |
| 731 | pause(isLocal?: boolean, doNotWaitActive?: boolean): Promise<void>; |
| 732 | |
| 733 | /** |
| 734 | * Returns a promise that resolves when the queue is resumed after being paused. |
no outgoing calls
no test coverage detected