MCPcopy Create free account
hub / github.com/BobbyAnguelov/Esoterica / IsBusy

Method IsBusy

Code/Base/Resource/ResourceSystem.cpp:37–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35 }
36
37 bool ResourceSystem::IsBusy() const
38 {
39 if ( m_isAsyncTaskRunning )
40 {
41 return true;
42 }
43
44 if ( !m_activeRequests.empty() )
45 {
46 return true;
47 }
48
49 if ( !m_pendingRequests.empty() )
50 {
51 return true;
52 }
53
54 return false;
55 }
56
57 //-------------------------------------------------------------------------
58

Callers 3

InitializeMethod · 0.45
ShutdownMethod · 0.45
UpdateMethod · 0.45

Calls 1

emptyMethod · 0.45

Tested by

no test coverage detected