IOnRecv interface
| 84 | |
| 85 | //IOnRecv interface |
| 86 | void OnNotify(THandle& h) override { |
| 87 | if (Y_LIKELY(MarkAsHandled())) { |
| 88 | THandleRef hr(&h); |
| 89 | OnMakeRequest(hr); //fix race with receiving response before return control from NNeh::Request() |
| 90 | MC_->ScheduleResponse(this, hr); |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | void OnRecv(THandle&) noexcept override { |
| 95 | UnRef(); |
nothing calls this directly
no test coverage detected