()
| 2 | |
| 3 | class WorkQueue { |
| 4 | constructor() { |
| 5 | this.debounceTime = config.get('workQueue.debounceTime') |
| 6 | this.pollingTime = config.get('workQueue.pollingTime') |
| 7 | |
| 8 | this.backgroundPool = [] |
| 9 | this.foregroundPool = new Map() |
| 10 | |
| 11 | this.startBackgroundQueue() |
| 12 | } |
| 13 | |
| 14 | clearDebounceTimer() { |
| 15 | clearInterval(this.debounceTimer) |
nothing calls this directly
no test coverage detected