* Clears the ping timer if its set, otherwise this is a noop.
()
| 135 | * Clears the ping timer if its set, otherwise this is a noop. |
| 136 | */ |
| 137 | private clearPreviousPingTimer(): void { |
| 138 | if (this.pingTimer !== undefined) { |
| 139 | clearTimeout(this.pingTimer); |
| 140 | delete this.pingTimer; |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | /** |
| 145 | * Sets the ping timer (including clearing any previous one). |
no outgoing calls
no test coverage detected