| 534 | } |
| 535 | } |
| 536 | bool NeedResult() { |
| 537 | if (AtomicGet(MapResult) != nullptr) |
| 538 | return false; |
| 539 | if (CancelCheck.Get()) { |
| 540 | if (!CancelCheck->MRIsCmdNeeded()) { |
| 541 | Cancel(); |
| 542 | return false; |
| 543 | } |
| 544 | } |
| 545 | return true; |
| 546 | } |
| 547 | TMRCommandExec( |
| 548 | TJobRequest* jobRequest, |
| 549 | TRemoteQueryProcessor* queryProc, |
nothing calls this directly
no test coverage detected