()
| 1489 | #scheduledWrite?: NodeJS.Immediate; |
| 1490 | |
| 1491 | #scheduleWrite() { |
| 1492 | if (!this.#socket.isReady || this.#scheduledWrite) return; |
| 1493 | |
| 1494 | this.#scheduledWrite = setImmediate(() => { |
| 1495 | this.#write(); |
| 1496 | this.#scheduledWrite = undefined; |
| 1497 | }); |
| 1498 | } |
| 1499 | |
| 1500 | #maybeScheduleWrite() { |
| 1501 | if (!this.#queue.isWaitingToWrite()) return; |
no test coverage detected