()
| 27 | } |
| 28 | |
| 29 | start() { |
| 30 | if (this._running) return; |
| 31 | this._running = true; |
| 32 | this._lastActivity = Date.now(); |
| 33 | this._scheduleOutbound(500); |
| 34 | this._scheduleInbound(1_000); |
| 35 | this.logger.log('[sync] engine started'); |
| 36 | } |
| 37 | |
| 38 | stop() { |
| 39 | this._running = false; |
nothing calls this directly
no test coverage detected