| 449 | } |
| 450 | |
| 451 | void AutoStartActionQueues() |
| 452 | { |
| 453 | for (auto &queue : queues) { |
| 454 | auto actionQueue = |
| 455 | std::dynamic_pointer_cast<ActionQueue>(queue); |
| 456 | if (actionQueue->RunsOnStartup()) { |
| 457 | actionQueue->Start(); |
| 458 | } |
| 459 | } |
| 460 | } |
| 461 | |
| 462 | void StopAndClearAllActionQueues() |
| 463 | { |
no test coverage detected