()
| 52628 | if (this[kHandler].onBodySent) { |
| 52629 | try { |
| 52630 | return this[kHandler].onBodySent(chunk); |
| 52631 | } catch (err) { |
| 52632 | this.abort(err); |
| 52633 | } |
| 52634 | } |
| 52635 | } |
| 52636 | onRequestSent() { |
| 52637 | if (channels.bodySent.hasSubscribers) { |
| 52638 | channels.bodySent.publish({ request: this }); |
| 52639 | } |
| 52640 | if (this[kHandler].onRequestSent) { |
| 52641 | try { |
| 52642 | return this[kHandler].onRequestSent(); |
| 52643 | } catch (err) { |
| 52644 | this.abort(err); |
no test coverage detected