| 460 | } |
| 461 | |
| 462 | void StopAndClearAllActionQueues() |
| 463 | { |
| 464 | for (auto &queue : queues) { |
| 465 | auto actionQueue = |
| 466 | std::dynamic_pointer_cast<ActionQueue>(queue); |
| 467 | actionQueue->Stop(); |
| 468 | actionQueue->Clear(); |
| 469 | } |
| 470 | } |
| 471 | |
| 472 | } // namespace advss |