1#ifndef Cpl_System_Counter_h_
2#define Cpl_System_Counter_h_
34 virtual void expired(
void )
noexcept = 0;
37 virtual void decrement(
unsigned long milliseconds=1 ) noexcept = 0;
40 virtual
void increment(
unsigned long milliseconds ) noexcept = 0;
43 virtual
unsigned long count() const noexcept = 0;
70 virtual unsigned long msecToCounts(
unsigned long durationInMsecs )
noexcept = 0;
This class is used by the Container classes to implement a various types of DOUBLY linked containers.
Definition Item.h:91
This abstract class defines the call-back interface for a Counter object.
Definition Counter_.h:31
virtual unsigned long count() const noexcept=0
Returns the current count (in milliseconds)
virtual void increment(unsigned long milliseconds) noexcept=0
Increments the counter.
virtual void expired(void) noexcept=0
Notification of the count reaching zero.
virtual void decrement(unsigned long milliseconds=1) noexcept=0
Decrements the counter.
This abstract class defines the interface for registering for an Counter object with the Timer Manage...
Definition Counter_.h:57
virtual bool detach(CounterCallback_ &clientToCallback) noexcept=0
Unregister for notification.
virtual void attach(CounterCallback_ &clientToCallback) noexcept=0
Register for notification.
virtual ~CounterSource_()
Virtual Destructor.
Definition Counter_.h:74
virtual unsigned long msecToCounts(unsigned long durationInMsecs) noexcept=0
This method converts the requested duration in milliseconds to counter ticks.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20