diff options
author | Sven Gothel <[email protected]> | 2022-04-10 19:32:48 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2022-04-10 19:32:48 +0200 |
commit | f3706ea975f4b3dc3a6e64200e62774d23915ee1 (patch) | |
tree | 56455c1108d481a04c01e35d300ebf169047af80 | |
parent | 3c91e76e9eed822966cd5c4d9f00f2c214b2da46 (diff) |
simple_timer: Renamed {SimpleTimer->simple_timer} and expose service_runner data w/ API docv0.7.14
-rw-r--r-- | include/jau/simple_timer.hpp | 29 |
1 files changed, 23 insertions, 6 deletions
diff --git a/include/jau/simple_timer.hpp b/include/jau/simple_timer.hpp index dfa4024..185ad2e 100644 --- a/include/jau/simple_timer.hpp +++ b/include/jau/simple_timer.hpp @@ -43,9 +43,9 @@ namespace jau { * Discussion: It is contemplated to add an implementation using a unique singleton service_runner * for multiple timer instances via event loops. */ - class SimpleTimer { + class simple_timer { public: - typedef SimpleTimer& Timer0_ref; + typedef simple_timer& Timer0_ref; /** * User defined timer function using millisecond granularity. @@ -80,8 +80,8 @@ namespace jau { } public: - SimpleTimer(const std::string& name, const nsize_t service_shutdown_timeout_ms) noexcept - : timer_service(name, service_shutdown_timeout_ms, jau::bindMemberFunc(this, &SimpleTimer::timer_worker)), + simple_timer(const std::string& name, const nsize_t service_shutdown_timeout_ms) noexcept + : timer_service(name, service_shutdown_timeout_ms, jau::bindMemberFunc(this, &simple_timer::timer_worker)), timer_func_ms(), duration_ms(0) {} @@ -89,7 +89,17 @@ namespace jau { * No copy constructor nor move constructor. * @param o */ - SimpleTimer(const SimpleTimer& o) = delete; + simple_timer(const simple_timer& o) = delete; + + /** + * Return the given name of this timer + */ + const std::string& get_name() const noexcept { return timer_service.get_name(); } + + /** + * Return the thread-id of this timer's worker thread, zero if not running. + */ + pthread_t get_threadid() const noexcept { return timer_service.get_threadid(); } /** * Returns true if timer is running @@ -97,6 +107,13 @@ namespace jau { bool is_running() const { return timer_service.is_running(); } /** + * Returns true if timer shall stop. + * + * This flag can be used by the Timer_func_ms function to determine whether to skip lengthly tasks. + */ + bool get_shall_stop() const noexcept { return timer_service.get_shall_stop(); } + + /** * Start the timer with given user Timer_func_ms function and initial duration in milliseconds. * * @param duration_ms_ initial timer duration until next timer event in milliseconds @@ -135,7 +152,7 @@ namespace jau { } /** - * Stop timer + * Stop timer, see service_runner::stop() */ void stop() { timer_service.stop(); |