| 107 | TAtomic RespCount; |
| 108 | |
| 109 | void GotResponse(int, TVector<char>* response) override { |
| 110 | CHROMIUM_TRACE_FUNCTION(); |
| 111 | if (AtomicDecrement(RespCount) == 0) { |
| 112 | QueryProc->SendReply(ReqId, response); |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | public: |
| 117 | TReplyForwarder(TRemoteQueryProcessor* queryProc, const TGUID& reqId, ssize_t RespCount = 1) |
nothing calls this directly
no test coverage detected