| 59 | } |
| 60 | |
| 61 | export class ResolverPool { |
| 62 | private workers: PoolWorker[] = []; |
| 63 | private nextId = 0; |
| 64 | private waiters = new Map<number, { resolve: (r: ChunkResult) => void; reject: (e: Error) => void }>(); |
nothing calls this directly
no outgoing calls
no test coverage detected