| 280 | } |
| 281 | |
| 282 | void ContentStorageSystem::Execute(TaskGraph* graph) |
| 283 | { |
| 284 | ScopeLock lock(Locker); |
| 285 | if (StorageMap.Count() == 0) |
| 286 | return; |
| 287 | |
| 288 | // Schedule work to update all storage containers in async |
| 289 | Function<void(int32)> job; |
| 290 | job.Bind<ContentStorageSystem, &ContentStorageSystem::Job>(this); |
| 291 | graph->DispatchJob(job, 1); |
| 292 | } |
no test coverage detected