GM6000 Digital Heater Controller Branch: main
SDX-1330
SubscriberApi.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_SubscriberApi_h_
2#define Cpl_Dm_SubscriberApi_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#include <stdint.h>
17
18///
19namespace Cpl {
20///
21namespace Dm {
22
23/// Forward reference to a Model point -->used to avoid circular dependencies
24class ModelPoint;
25
26/// Forward reference to the Data Model Mailbox server -->used to avoid circular dependencies
27class NotificationApi_;
28
29
30/** This abstract class defines the Subscriber interface - for change
31 notifications - to a Model Points data/state
32 */
34{
35public:
36 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
37 by other classes in the Cpl::Dm namespace. The Application should
38 NEVER call this method.
39
40 This method is the client's callback function for a MP change
41 notification. This method is called in as part of the asynchronous
42 notification mechanism of the subscriber's Mailbox Server, i.e. executes
43 in the thread associated m_mailBoxHdl
44 */
45 virtual void genericModelPointChanged_( ModelPoint& modelPointThatChanged, SubscriberApi& clientObserver ) noexcept = 0;
46
47 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
48 by other classes in the Cpl::Dm namespace. The Application should
49 NEVER call this method.
50
51 This method returns a pointer to the Subscriber's mailbox
52 */
53 virtual NotificationApi_* getNotificationApi_() const noexcept = 0;
54
55 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
56 by other classes in the Cpl::Dm namespace. The Application should
57 NEVER call this method.
58
59 This method is use to set the Subscriber's Model Point reference
60 */
61 virtual void setModelPoint_( ModelPoint* modelPoint ) noexcept = 0;
62
63 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
64 by other classes in the Cpl::Dm namespace. The Application should
65 NEVER call this method.
66
67 This method is use to get the Subscriber's Model Point reference.
68
69 Note: If this method is called BEFORE the setModelPoint() method is
70 called then a Fatal Error will be generated.
71 */
72 virtual ModelPoint* getModelPoint_() noexcept = 0;
73
74 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
75 by other classes in the Cpl::Dm namespace. The Application should
76 NEVER call this method.
77
78 This method is use to get the Subscriber's internal state
79 */
80 virtual int getState_() const noexcept = 0;
81
82 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
83 by other classes in the Cpl::Dm namespace. The Application should
84 NEVER call this method.
85
86 This method is use to set the Subscriber's internal state
87 */
88 virtual void setState_( int newState ) noexcept = 0;
89
90 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
91 by other classes in the Cpl::Dm namespace. The Application should
92 NEVER call this method.
93
94 This method is use to get the Subscriber's sequence number
95 */
96 virtual uint16_t getSequenceNumber_() const noexcept = 0;
97
98 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
99 by other classes in the Cpl::Dm namespace. The Application should
100 NEVER call this method.
101
102 This method is use to set the Subscriber's sequence number
103 */
104 virtual void setSequenceNumber_( uint16_t newSeqNumber ) noexcept = 0;
105
106
107public:
108 /// Virtual destructor
109 virtual ~SubscriberApi() {}
110};
111
112
113
114}; // end namespaces
115};
116#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 mostly abstract class defines the interface for a Model Point.
Definition ModelPoint.h:46
This class has PACKAGE Scope, i.e.
Definition NotificationApi_.h:30
This abstract class defines the Subscriber interface - for change notifications - to a Model Points d...
Definition SubscriberApi.h:34
virtual void setState_(int newState) noexcept=0
This method has PACKAGE Scope, i.e.
virtual uint16_t getSequenceNumber_() const noexcept=0
This method has PACKAGE Scope, i.e.
virtual int getState_() const noexcept=0
This method has PACKAGE Scope, i.e.
virtual void setSequenceNumber_(uint16_t newSeqNumber) noexcept=0
This method has PACKAGE Scope, i.e.
virtual NotificationApi_ * getNotificationApi_() const noexcept=0
This method has PACKAGE Scope, i.e.
virtual void genericModelPointChanged_(ModelPoint &modelPointThatChanged, SubscriberApi &clientObserver) noexcept=0
This method has PACKAGE Scope, i.e.
virtual ModelPoint * getModelPoint_() noexcept=0
This method has PACKAGE Scope, i.e.
virtual void setModelPoint_(ModelPoint *modelPoint) noexcept=0
This method has PACKAGE Scope, i.e.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20