(fn)
| 372 | } |
| 373 | |
| 374 | public onAborted(fn) { |
| 375 | if (this.isAborted) return; |
| 376 | |
| 377 | this.res.onAborted(() => { |
| 378 | // Any attempt to use the UWS response object after abort will throw! |
| 379 | this.isAborted = true; |
| 380 | fn(); |
| 381 | }); |
| 382 | } |
| 383 | |
| 384 | public cork(fn) { |
| 385 | if (this.isAborted) return; |
no test coverage detected