| 226 | |
| 227 | template <typename TDataUpdater> |
| 228 | void UpdateDistributed( |
| 229 | int partsCount, |
| 230 | IEnvironment* sourceEnvironment, |
| 231 | const TDataUpdater& dataUpdater, |
| 232 | IEnvironment* targetEnvironment) { |
| 233 | CHROMIUM_TRACE_FUNCTION(); |
| 234 | TVector<TDataLocation> targetLocations; |
| 235 | CalcDistributed(partsCount, sourceEnvironment, dataUpdater, &targetLocations); |
| 236 | targetEnvironment->SetContextData(targetLocations); |
| 237 | } |
| 238 | } |
nothing calls this directly
no test coverage detected