![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class defines the call-back interface for a Counter object. More...
This abstract class defines the call-back interface for a Counter object.
A Counter object is used to maintain a counter down mechanism for tracking the time remaining for an individual timer.
The Counter interface is NOT inherently thread safe.
#include <Counter_.h>
Public Member Functions | |
virtual void | expired (void) noexcept=0 |
Notification of the count reaching zero. | |
virtual void | decrement (unsigned long milliseconds=1) noexcept=0 |
Decrements the counter. | |
virtual void | increment (unsigned long milliseconds) noexcept=0 |
Increments the counter. | |
virtual unsigned long | count () const noexcept=0 |
Returns the current count (in milliseconds) | |
virtual | ~CounterCallback_ () |
Virtual Destructor. | |
![]() | |
bool | insert_ (void *newContainerPtr) |
Helper method to trap when inserting an item in multiple containers. | |
bool | isInContainer_ (const void *containerPtr) const noexcept |
Returns 'true' if the instance is in the specified container. | |
Additional Inherited Members | |
![]() | |
static void | remove_ (Item *itemPtr) noexcept |
Helper method to do the proper 'clean-up' for the multiple-containers-error-trap when removing an item from a container. | |
![]() | |
void * | m_prevPtr_ |
The previous link field. | |
![]() | |
void * | m_nextPtr_ |
The link field. | |
void * | m_inListPtr_ |
Debug field. | |
![]() | |
ExtendedItem () | |
Constructor. | |
ExtendedItem (const char *ignoreThisParameter_usedToCreateAUniqueConstructor) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
![]() | |
Item () | |
Constructor. | |
Item (const char *) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
|
inlinevirtual |
Virtual Destructor.
|
pure virtualnoexcept |
Returns the current count (in milliseconds)
Implemented in Cpl::System::Timer.
|
pure virtualnoexcept |
Decrements the counter.
Implemented in Cpl::System::Timer.
|
pure virtualnoexcept |
Notification of the count reaching zero.
Implemented in Ajax::Heating::Io::Api, Ajax::Heating::Supervisor::Api, Ajax::Metrics::Api, Ajax::Ui::StatusIndicator::Api, Cpl::System::TimerComposer< CONTEXT >, Cpl::System::TimerComposer< Ajax::ScreenMgr::Api >, Ajax::Ui::LogicalButtons, Cpl::Dm::Persistent::Record, Cpl::MApp::Temperature::Api, Driver::AIO::Ajax::Thermistor, and Eros::Test::Cycle::Api.
|
pure virtualnoexcept |
Increments the counter.
Implemented in Cpl::System::Timer.