| 287 | SharedCmd = new TSharedCmd(finalMap); |
| 288 | } |
| 289 | void ExecAsync(IUserContext* ctx, int hostId, TVector<char>* params, IDCResultNotify* dcNotify, int reqId) const override { |
| 290 | CHROMIUM_TRACE_FUNCTION(); |
| 291 | (void)hostId; |
| 292 | TExecRange range; |
| 293 | SerializeFromMem(params, range); |
| 294 | |
| 295 | TIntrusivePtr<TExecutor> exec; |
| 296 | exec = new TExecutor(ctx, hostId, SharedCmd.Get(), range.Start, range.Finish, dcNotify, reqId); |
| 297 | exec->Launch(); |
| 298 | } |
| 299 | void MergeAsync(TVector<TVector<char>>* src, IDCResultNotify* dcNotify, int reqId) const override { |
| 300 | CHROMIUM_TRACE_FUNCTION(); |
| 301 | SharedCmd->FinalMap->MergeAsync(src, dcNotify, reqId); |
nothing calls this directly
no test coverage detected