()
| 596 | } |
| 597 | |
| 598 | private startOutputLoop() { |
| 599 | this.outputBuffer = new CircularBuffer<string>( |
| 600 | globalConfiguration.config.outputBufferSize || 256 |
| 601 | ); |
| 602 | this.outputLoopTask = setInterval(() => { |
| 603 | this.flushOutputBuffer(); |
| 604 | }, 50); |
| 605 | } |
| 606 | |
| 607 | private stopOutputLoop() { |
| 608 | if (this.outputLoopTask) clearInterval(this.outputLoopTask); |
no test coverage detected