()
| 120 | } |
| 121 | |
| 122 | status(): {busy: boolean; pending: number; size: number} { |
| 123 | const pending = this._queue.pending; |
| 124 | const size = this._queue.size; |
| 125 | const running = this._running.size; |
| 126 | return { |
| 127 | busy: pending > 0 || size > 0 || running > 0, |
| 128 | pending, |
| 129 | size, |
| 130 | }; |
| 131 | } |
| 132 | } |
no outgoing calls
no test coverage detected