1#ifndef Cpl_System_TimerManager_h_
2#define Cpl_System_TimerManager_h_
78 virtual void tick(
unsigned long milliseconds=1 ) noexcept;
This abstract class defines the call-back interface for a Counter object.
Definition Counter_.h:31
This abstract class defines the interface for registering for an Counter object with the Timer Manage...
Definition Counter_.h:57
This mostly concrete class implements manages a list of Software Timers.
Definition TimerManager.h:36
unsigned long m_timeNow
Elapsed time of the current processing cycle.
Definition TimerManager.h:96
void startManager(void) noexcept
This method starts the Timer Manager.
bool detach(CounterCallback_ &clientToCallback) noexcept
See Cpl::System::CounterCallback_.
unsigned long m_timeMark
Elapsed time of the previous processing cycle.
Definition TimerManager.h:93
void attach(CounterCallback_ &clientToCallback) noexcept
See Cpl::System::CounterCallback_.
TimerManager()
Constructor.
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 tha...
Cpl::Container::DList< CounterCallback_ > m_counters
List of active counters.
Definition TimerManager.h:87
void addToActiveList(CounterCallback_ &clientToCallback) noexcept
Helper method.
virtual void tickComplete(void) noexcept
This method is used by the Tick source to information the Timer Manager that there are no more ticks ...
unsigned long msecToCounts(unsigned long milliseconds) noexcept
See Cpl::System::CounterCallback_.
void processTimers(void) noexcept
This method processes the current active timer lists.
bool m_inTickCall
Flag to tracks when I am actively processing/consuming ticks.
Definition TimerManager.h:99
bool areActiveTimers(void) noexcept
Returns true if there are NO active timers.
Cpl::Container::DList< CounterCallback_ > m_pendingAttach
List of Pending-to-attach counters (this happens when timers attach from the timer-expired-callbacks)
Definition TimerManager.h:90
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20