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

Method Dispose

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

Source from the content-addressed store, hash-verified

239}
240
241void ContentStorageService::Dispose()
242{
243 ScopeLock lock(Locker);
244 for (auto i = StorageMap.Begin(); i.IsNotEnd(); ++i)
245 i->Value->Dispose();
246 Files.ClearDelete();
247 Packages.ClearDelete();
248 StorageMap.Clear();
249 ASSERT(Files.IsEmpty() && Packages.IsEmpty());
250 SAFE_DELETE(System);
251}
252
253void ContentStorageSystem::Job(int32 index)
254{

Callers 1

JobMethod · 0.45

Calls 5

BeginMethod · 0.45
IsNotEndMethod · 0.45
ClearDeleteMethod · 0.45
ClearMethod · 0.45
IsEmptyMethod · 0.45

Tested by

no test coverage detected