44 void start(
int interval,
const std::function<
void(
void*)>& func,
void* userData);
Manages a thread which calls a specified function at a specified interval.
Definition CallbackTimer.hpp:22
~CallbackTimer()
Destructor.
std::atomic< bool > _execute
Flag whether the timer should execute.
Definition CallbackTimer.hpp:58
CallbackTimer(CallbackTimer &&)=delete
Move constructor.
std::thread _thd
Thread object which triggers the timer.
Definition CallbackTimer.hpp:60
void setInterval(int interval)
Set the Interval of the timer.
void start(int interval, const std::function< void(void *)> &func, void *userData)
Starts the timer.
CallbackTimer()=default
Default constructor.
void stop()
Stops the Timer.
CallbackTimer & operator=(const CallbackTimer &)=delete
Copy assignment operator.
std::atomic< int > _interval
Interval in which the timer is triggered.
Definition CallbackTimer.hpp:56
CallbackTimer(const CallbackTimer &)=delete
Copy constructor.
bool is_running() const noexcept
Checks if the timer is currently running.
CallbackTimer & operator=(CallbackTimer &&)=delete
Move assignment operator.