| 57 | } |
| 58 | |
| 59 | std::shared_ptr<concurrencpp::executor> timer::get_executor() const { |
| 60 | throw_if_empty(details::consts::k_timer_empty_get_executor_err_msg); |
| 61 | return m_state->get_executor(); |
| 62 | } |
| 63 | |
| 64 | std::weak_ptr<concurrencpp::timer_queue> timer::get_timer_queue() const { |
| 65 | throw_if_empty(details::consts::k_timer_empty_get_timer_queue_err_msg); |
no outgoing calls