(controller, statusCode, headers, statusText)
| 114 | } |
| 115 | |
| 116 | onResponseStart (controller, statusCode, headers, statusText) { |
| 117 | this.dst.on('drain', () => controller.resume()) |
| 118 | } |
| 119 | |
| 120 | onResponseData (controller, chunk) { |
| 121 | if (this.dst.write(chunk) === false) { |