()
| 103 | } |
| 104 | |
| 105 | public async start(): Promise<void> { |
| 106 | await this.initialize(); |
| 107 | await this.sync.invalidateAndAwait(); |
| 108 | this.intervalId = setInterval(() => this.sync.invalidate(), this.options.intervalMs); |
| 109 | } |
| 110 | |
| 111 | public async cleanup(): Promise<void> { |
| 112 | this.stopped = true; |
nothing calls this directly
no test coverage detected