| 724 | } |
| 725 | |
| 726 | void Scheduler::runOnAxmolThread(std::function<void()> action) |
| 727 | { |
| 728 | std::lock_guard<std::mutex> lock(_performMutex); |
| 729 | _actionsToPerform.emplace_back(std::move(action)); |
| 730 | } |
| 731 | |
| 732 | void Scheduler::removeAllPendingActions() |
| 733 | { |