| 143 | |
| 144 | public: |
| 145 | TRemoteMRCommandExec(TNetworkRequest* req, TRemoteQueryProcessor* queryProc) |
| 146 | : QueryProc(queryProc) |
| 147 | , IsQueryCanceled(false) |
| 148 | { |
| 149 | CHROMIUM_TRACE_FUNCTION(); |
| 150 | ReqId = req->ReqId; |
| 151 | AllJobs = new TJobRequest; |
| 152 | SerializeFromMem(&req->Data, *AllJobs); |
| 153 | AllJobs->IsLowPriority = req->Url == "mr_low"; |
| 154 | CancelCallback.Attach(this, queryProc, ReqId); |
| 155 | } |
| 156 | ~TRemoteMRCommandExec() override { |
| 157 | CancelCallback.Detach(); |
| 158 | } |
nothing calls this directly
no test coverage detected