Start (or resume) executing enqueued tasks within concurrency limit. No need to call this if queue is not paused (via `options.autoStart = false` or by `.pause()` method.)
()
| 593 | Start (or resume) executing enqueued tasks within concurrency limit. No need to call this if queue is not paused (via `options.autoStart = false` or by `.pause()` method.) |
| 594 | */ |
| 595 | start(): this { |
| 596 | if (!this.#isPaused) { |
| 597 | return this; |
| 598 | } |
| 599 | |
| 600 | this.#isPaused = false; |
| 601 | |
| 602 | this.#processQueue(); |
| 603 | return this; |
| 604 | } |
| 605 | |
| 606 | /** |
| 607 | Put queue execution on hold. |
no test coverage detected