(controller, context)
| 168 | } |
| 169 | |
| 170 | onRequestStart (controller, context) { |
| 171 | this.#writeStream?.destroy() |
| 172 | this.#writeStream = undefined |
| 173 | this.#handler.onRequestStart?.(controller, context) |
| 174 | } |
| 175 | |
| 176 | onBodySent (chunk) { |
| 177 | this.#handler.onBodySent?.(chunk) |
nothing calls this directly
no test coverage detected