1#ifndef Cpl_System_Timer_h_
2#define Cpl_System_Timer_h_
67 virtual void start(
unsigned long timerDurationInMilliseconds )
noexcept;
72 virtual void stop() noexcept;
75 unsigned long count() const noexcept;
85 void decrement(
unsigned long milliseconds=1 ) noexcept;
88 void increment(
unsigned long milliseconds ) noexcept;
100template <class CONTEXT>
107 typedef void (CONTEXT::* TimerExpiredFunction_T)();
113 TimerExpiredFunction_T m_expiredFuncPtr;
119 CONTEXT& timerContextInstance,
120 TimerExpiredFunction_T expiredCallbackFunc
129 TimerExpiredFunction_T expiredCallbackFunc
143template <class CONTEXT>
148 TimerExpiredFunction_T expiredCallback
150 :
Timer( timingSource )
151 , m_context( context )
152 , m_expiredFuncPtr( expiredCallback )
156template <
class CONTEXT>
160 TimerExpiredFunction_T expiredCallback
163 , m_context( context )
164 , m_expiredFuncPtr( expiredCallback )
167template <
class CONTEXT>
170 (m_context.*m_expiredFuncPtr)();
This abstract class defines the call-back interface for a Counter object.
Definition Counter_.h:31
This template class implements a Software Timer that is context independent and allows for a single c...
Definition Timer.h:102
TimerComposer(CONTEXT &timerContextInstance, TimerExpiredFunction_T expiredCallbackFunc)
Alternate Constructor that is used to defer the assignment of the time source.
Definition Timer.h:158
TimerComposer(TimerManager &timingSource, CONTEXT &timerContextInstance, TimerExpiredFunction_T expiredCallbackFunc)
Constructor.
Definition Timer.h:145
void expired() noexcept
See Cpl::System::CounterCallback_.
Definition Timer.h:168
This mostly concrete interface defines the operations that can be performed on a software timer.
Definition Timer.h:47
Timer()
Constructor. Alternate constructor - that defers the assignment of the timing source
virtual void stop() noexcept
Stops the timer.
Timer(TimerManager &timingSource)
Constructor
virtual void setTimingSource(TimerManager &timingSource) noexcept
Sets the timing source.
TimerManager * m_timingSource
The timer's tick source.
Definition Timer.h:50
unsigned long m_count
Current count.
Definition Timer.h:53
unsigned long count() const noexcept
Returns the current count (in milliseconds)
void increment(unsigned long milliseconds) noexcept
See Cpl::System::CounterCallback_.
virtual void start(unsigned long timerDurationInMilliseconds) noexcept
Starts the timer with an initial count down count duration of 'timerDurationInMilliseconds'.
void decrement(unsigned long milliseconds=1) noexcept
See Cpl::System::CounterCallback_.
This mostly concrete class implements manages a list of Software Timers.
Definition TimerManager.h:36
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20