GM6000 Digital Heater Controller Branch: main
SDX-1330
Counter_.h
Go to the documentation of this file.
1#ifndef Cpl_System_Counter_h_
2#define Cpl_System_Counter_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15#include "Cpl/Container/Item.h"
16
17
18///
19namespace Cpl {
20///
21namespace System {
22
23
24/** This abstract class defines the call-back interface for a Counter object.
25 A Counter object is used to maintain a counter down mechanism for tracking
26 the time remaining for an individual timer.
27
28 The Counter interface is NOT inherently thread safe.
29 */
31{
32public:
33 /// Notification of the count reaching zero
34 virtual void expired( void ) noexcept = 0;
35
36 /// Decrements the counter
37 virtual void decrement( unsigned long milliseconds=1 ) noexcept = 0;
38
39 /// Increments the counter
40 virtual void increment( unsigned long milliseconds ) noexcept = 0;
41
42 /// Returns the current count (in milliseconds)
43 virtual unsigned long count() const noexcept = 0;
44
45public:
46 /// Virtual Destructor
47 virtual ~CounterCallback_() {}
48
49};
50
51
52
53/** This abstract class defines the interface for registering for
54 an Counter object with the Timer Manager
55 */
57{
58public:
59 /// Register for notification
60 virtual void attach( CounterCallback_& clientToCallback ) noexcept = 0;
61
62 /** Unregister for notification. Returns true if the client was currently
63 attached/registered; else false is returned.
64 */
65 virtual bool detach( CounterCallback_& clientToCallback ) noexcept = 0;
66
67 /** This method converts the requested duration in milliseconds to
68 counter ticks.
69 */
70 virtual unsigned long msecToCounts( unsigned long durationInMsecs ) noexcept = 0;
71
72public:
73 /// Virtual Destructor
74 virtual ~CounterSource_() {}
75
76};
77
78
79}; // end namespaces
80};
81#endif // end header latch
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