| 32 | * but the promisies for this will still resolve in order they were inserted in the queue |
| 33 | */ |
| 34 | export class AutoQueue<T> implements IQueue { |
| 35 | private pendingPromise = false; |
| 36 | private queue: Queue<Action<T>>; |
| 37 | private _abort = false; |
nothing calls this directly
no outgoing calls
no test coverage detected