MCPcopy Create free account
hub / github.com/SpartanJ/eepp / Plugin

Method Plugin

src/tools/ecode/plugins/plugin.cpp:10–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8namespace ecode {
9
10Plugin::Plugin( PluginManager* manager ) :
11 mManager( manager ),
12 mThreadPool( manager->getThreadPool() ),
13 mReady( false ), // All plugins will start as "not ready" until proven the contrary
14 mLoading( true ) // All plugins will start as "loading" until the load is complete, this is to
15 // avoid concurrency issues
16{}
17
18bool Plugin::isReady() const {
19 return mReady;

Callers

nothing calls this directly

Calls 1

getThreadPoolMethod · 0.45

Tested by

no test coverage detected