(reason?: string)
| 511 | } |
| 512 | |
| 513 | pushCancel(reason?: string): void { |
| 514 | this.#cancelled = true; |
| 515 | this.#abort.abort(); |
| 516 | this.#push({ cancel: { reason } }); |
| 517 | } |
| 518 | |
| 519 | #push(item: BodyQueueItem): void { |
| 520 | this.#buffer.push(item); |
no test coverage detected