| 425 | } |
| 426 | |
| 427 | void TRemoteQueryProcessor::IncomingQueryCallbackImpl(TAutoPtr<TNetworkRequest>& nlReq) { |
| 428 | CHROMIUM_TRACE_FUNCTION(); |
| 429 | |
| 430 | PAR_DEBUG_LOG << "At " << Requester->GetHostAndPort() << " Got request " << nlReq->Url << " " << GetGuidAsString(nlReq->ReqId) << Endl; |
| 431 | NetworkEventsQueue.Enqueue(TNetworkEvent(nlReq.Release())); |
| 432 | NetworkEvent.Signal(); |
| 433 | } |
| 434 | |
| 435 | void TRemoteQueryProcessor::ReplyCallback(TAutoPtr<TNetworkResponse> response) { |
| 436 | WaitUntilRequesterIsSet(); |
nothing calls this directly
no test coverage detected