| 691 | */ |
| 692 | template<typename Function> |
| 693 | static void start(std::shared_ptr<TimerThread> timer_thread, |
| 694 | Duration duration, |
| 695 | Function function) { |
| 696 | timer_thread->duration_ = duration; |
| 697 | launch_run(timer_thread, function); |
| 698 | } |
| 699 | |
| 700 | /*! |
| 701 | * \brief Internal timer execution function |
nothing calls this directly
no outgoing calls
no test coverage detected