| 97 | } |
| 98 | |
| 99 | concurrencpp::runtime::~runtime() noexcept { |
| 100 | try { |
| 101 | m_timer_queue->shutdown(); |
| 102 | m_registered_executors.shutdown_all(); |
| 103 | |
| 104 | } catch (...) { |
| 105 | std::abort(); |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | std::shared_ptr<concurrencpp::timer_queue> runtime::timer_queue() const noexcept { |
| 110 | return m_timer_queue; |
nothing calls this directly
no test coverage detected