| 995 | } |
| 996 | |
| 997 | void Console::commandDirectorSubCommandPause(socket_native_type /*fd*/, std::string_view /*args*/) |
| 998 | { |
| 999 | auto director = Director::getInstance(); |
| 1000 | Scheduler* sched = director->getScheduler(); |
| 1001 | sched->runOnAxmolThread([]() { Director::getInstance()->pause(); }); |
| 1002 | } |
| 1003 | |
| 1004 | void Console::commandDirectorSubCommandResume(socket_native_type /*fd*/, std::string_view /*args*/) |
| 1005 | { |
nothing calls this directly
no test coverage detected