* Handle socket errors, if the socket is not readable invoke all pending callbacks
(err)
| 337 | * Handle socket errors, if the socket is not readable invoke all pending callbacks |
| 338 | */ |
| 339 | handleSocketError(err) { |
| 340 | this._metrics.onConnectionError(err); |
| 341 | this.clearAndInvokePending(err); |
| 342 | } |
| 343 | |
| 344 | /** |
| 345 | * Cleans all internal state and invokes all pending callbacks of sent streams |
nothing calls this directly
no test coverage detected