Stop heartbeat timer.
()
| 696 | |
| 697 | /** Stop heartbeat timer. */ |
| 698 | private stopHeartbeat(): void { |
| 699 | if (this.heartbeatTimer) { |
| 700 | clearTimeout(this.heartbeatTimer) |
| 701 | this.heartbeatTimer = null |
| 702 | } |
| 703 | } |
| 704 | |
| 705 | /** Send a heartbeat via POST /sessions/{id}/worker/heartbeat. */ |
| 706 | private async sendHeartbeat(): Promise<void> { |
no outgoing calls
no test coverage detected