* Clears the pong timer if its set, otherwise this is a noop.
()
| 226 | * Clears the pong timer if its set, otherwise this is a noop. |
| 227 | */ |
| 228 | private clearPreviousPongTimer(): void { |
| 229 | if (this.pongTimer !== undefined) { |
| 230 | clearTimeout(this.pongTimer); |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | /** |
| 235 | * Determines if a giving incoming event can be treated as an acknowledgement for the outstanding ping, and then |
no outgoing calls
no test coverage detected