(item: BodyQueueItem)
| 517 | } |
| 518 | |
| 519 | #push(item: BodyQueueItem): void { |
| 520 | this.#buffer.push(item); |
| 521 | const w = this.#waker; |
| 522 | this.#waker = null; |
| 523 | w?.(); |
| 524 | } |
| 525 | |
| 526 | /** |
| 527 | * Request body bytes, yielded as they arrive. A cancel frame surfaces as a |
no test coverage detected