| 21 | * It will start at concurrency 1 and ramp up to the max concurrency unless there is a large jump above the median size then it will decrease. |
| 22 | * */ |
| 23 | export class RampQueue<T> extends AutoQueue<T> { |
| 24 | #maxConcurrency: number; |
| 25 | #sizes: number[] = []; |
| 26 | #totalItems = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected