| 338 | } |
| 339 | |
| 340 | void SendReply(TData& data) override { |
| 341 | TIntrusivePtr<TRequester> p; |
| 342 | p.Swap(P_); |
| 343 | if (!!p) { |
| 344 | if (!Canceled()) { |
| 345 | p->R_->SendResponse(R_->ReqId, &data); |
| 346 | } |
| 347 | p->RequestProcessed(this); |
| 348 | } |
| 349 | } |
| 350 | |
| 351 | void SendError(TResponseError, const TString&) override { |
| 352 | // TODO |
nothing calls this directly
no test coverage detected