(count)
| 136 | this.#callbacks.onWritable?.(count - 96); |
| 137 | } |
| 138 | #onReadable(count) { |
| 139 | this.#socket.readable = count; |
| 140 | if (this.#data) |
| 141 | return; |
| 142 | |
| 143 | this.#messageHandler(true); |
| 144 | if (!this.#ready) |
| 145 | this.#messageHandler(); |
| 146 | } |
| 147 | #onError() { |
| 148 | this.#callbacks.onError?.(); |
| 149 | } |
no test coverage detected