MCPcopy Create free account
hub / github.com/WarmUpTill/SceneSwitcher / Start

Method Start

lib/queue/action-queue.cpp:60–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58}
59
60void ActionQueue::Start()
61{
62 if (!_stop) {
63 return;
64 }
65
66 if (_thread.joinable()) {
67 _thread.join();
68 }
69 _stop = false;
70 _thread = std::thread(&ActionQueue::RunActions, this);
71}
72
73void ActionQueue::Stop()
74{

Callers 9

CheckFirstTimeSetupMethod · 0.45
startHotkeyFuncFunction · 0.45
PerformActionMethod · 0.45
StartPluginFunction · 0.45
StartStopClickedMethod · 0.45
StartNewQueueMethod · 0.45
AutoStartActionQueuesFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected