| 317 | CancelCallback.Attach(this, QueryProc.Get(), MasterGuid); |
| 318 | } |
| 319 | void CancelAllRemoteQueries() { |
| 320 | TGUID req; |
| 321 | while (AllReqList.Dequeue(&req)) { |
| 322 | PAR_DEBUG_LOG << "Cancel req " << GetGuidAsString(req) << Endl; |
| 323 | QueryProc->CancelQuery(req); |
| 324 | } |
| 325 | } |
| 326 | void RegisterRemoteQuery(const TGUID& req) { |
| 327 | AllReqList.Enqueue(req); |
| 328 | if (!NeedResult()) |
nothing calls this directly
no test coverage detected