* Creates a new job and adds it to the queue. * If the queue is empty the job will be executed directly, * otherwise it will be placed in the queue and executed as soon as possible.
(data: T, opts?: JobOptions)
| 693 | * otherwise it will be placed in the queue and executed as soon as possible. |
| 694 | */ |
| 695 | add(data: T, opts?: JobOptions): Promise<Job<T>>; |
| 696 | |
| 697 | /** |
| 698 | * Creates a new named job and adds it to the queue. |
no outgoing calls
no test coverage detected