| 52 | } |
| 53 | |
| 54 | std::chrono::milliseconds timer::get_frequency() const { |
| 55 | throw_if_empty(details::consts::k_timer_empty_get_frequency_err_msg); |
| 56 | return std::chrono::milliseconds(m_state->get_frequency()); |
| 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); |
no outgoing calls