MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / Execute

Method Execute

Source/Engine/Content/Storage/ContentStorageManager.cpp:282–292  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

280}
281
282void 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}

Callers 1

RunMethod · 0.45

Calls 2

DispatchJobMethod · 0.80
CountMethod · 0.45

Tested by

no test coverage detected