()
| 26 | } |
| 27 | |
| 28 | private startCleanupTimer(): void { |
| 29 | if (this.cleanupTimer) { |
| 30 | return; |
| 31 | } |
| 32 | this.cleanupTimer = setInterval(() => { |
| 33 | this.cleanup(); |
| 34 | }, this.cleanupInterval); |
| 35 | } |
| 36 | |
| 37 | private stopCleanupTimer(): void { |
| 38 | if (this.cleanupTimer) { |