![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This mostly concrete class implements manages a list of Software Timers. More...
This mostly concrete class implements manages a list of Software Timers.
When an individual Timer object's count reaches zero, its callback method is invoked and it is remove from the Active List. The Active List is designed to be very efficient with respect to decrement counts when there are many Timers in the list, i.e. the amount of time to decrement the individual Timers is NOT a function of the number of active Timers.
The Timer Manager requires that the Timer Manager instances, all Timer instances, add the Timer's Context (i.e. the code that executes the timer expired callbacks) all execute in the SAME thread.
#include <TimerManager.h>
Public Member Functions | |
TimerManager () | |
Constructor. | |
void | startManager (void) noexcept |
This method starts the Timer Manager. | |
void | processTimers (void) noexcept |
This method processes the current active timer lists. | |
bool | areActiveTimers (void) noexcept |
Returns true if there are NO active timers. | |
void | attach (CounterCallback_ &clientToCallback) noexcept |
See Cpl::System::CounterCallback_. | |
bool | detach (CounterCallback_ &clientToCallback) noexcept |
See Cpl::System::CounterCallback_. | |
unsigned long | msecToCounts (unsigned long milliseconds) noexcept |
See Cpl::System::CounterCallback_. | |
![]() | |
virtual | ~CounterSource_ () |
Virtual Destructor. | |
Protected Member Functions | |
void | addToActiveList (CounterCallback_ &clientToCallback) noexcept |
Helper method. | |
virtual void | tick (unsigned long milliseconds=1) noexcept |
This method is intended to be call by a the timing source and each call to this method represents that one tick has expired, i.e. | |
virtual void | tickComplete (void) noexcept |
This method is used by the Tick source to information the Timer Manager that there are no more ticks for the timing source's current tick cycle. | |
Protected Attributes | |
Cpl::Container::DList< CounterCallback_ > | m_counters |
List of active counters. | |
Cpl::Container::DList< CounterCallback_ > | m_pendingAttach |
List of Pending-to-attach counters (this happens when timers attach from the timer-expired-callbacks) | |
unsigned long | m_timeMark |
Elapsed time of the previous processing cycle. | |
unsigned long | m_timeNow |
Elapsed time of the current processing cycle. | |
bool | m_inTickCall |
Flag to tracks when I am actively processing/consuming ticks. | |
Cpl::System::TimerManager::TimerManager | ( | ) |
Constructor.
|
protectednoexcept |
Helper method.
|
noexcept |
Returns true if there are NO active timers.
|
virtualnoexcept |
See Cpl::System::CounterCallback_.
Implements Cpl::System::CounterSource_.
|
virtualnoexcept |
See Cpl::System::CounterCallback_.
Implements Cpl::System::CounterSource_.
|
virtualnoexcept |
See Cpl::System::CounterCallback_.
Implements Cpl::System::CounterSource_.
|
noexcept |
This method processes the current active timer lists.
For each timer that has expired, the timer's context callback method is called.
|
noexcept |
|
protectedvirtualnoexcept |
This method is intended to be call by a the timing source and each call to this method represents that one tick has expired, i.e.
decrement the active Counter objects' by one.
|
protectedvirtualnoexcept |
This method is used by the Tick source to information the Timer Manager that there are no more ticks for the timing source's current tick cycle.
|
protected |
List of active counters.
|
protected |
Flag to tracks when I am actively processing/consuming ticks.
|
protected |
List of Pending-to-attach counters (this happens when timers attach from the timer-expired-callbacks)
|
protected |
Elapsed time of the previous processing cycle.
|
protected |
Elapsed time of the current processing cycle.