GM6000 Digital Heater Controller Branch: main
SDX-1330
NotificationApi_.h
Go to the documentation of this file.
1#ifndef Cpl_Dm_NotificationApi_h_
2#define Cpl_Dm_NotificationApi_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
16
17
18///
19namespace Cpl {
20///
21namespace Dm {
22
23/** This class has PACKAGE Scope, i.e. it is intended to be ONLY accessible
24 by other classes in the Cpl::Dm namespace. The Application should
25 NEVER call this method.
26
27 This class defines the interface to register for Model Point Change notifications.
28 */
30{
31public:
32 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
33 by other classes in the Cpl::Dm namespace. The Application should
34 NEVER call this method.
35
36 This method is used add a new 'change notification' to its list
37 of pending change notifications. Calling this method when the
38 subscriber is already registered for change notification will cause
39 a FATAL ERROR.
40
41 This method IS thread safe.
42
43 NOTE: The requirements and/or semantics of Model Point subscription is
44 that Subscriptions, Notifications, and Cancel-of-Subscriptions
45 all happen in a SINGLE thread and that thread is the 'Subscribers'
46 thread.
47 */
48 virtual void addPendingChangingNotification_( SubscriberApi& subscriber ) noexcept = 0;
49
50 /** This method has PACKAGE Scope, i.e. it is intended to be ONLY accessible
51 by other classes in the Cpl::Dm namespace. The Application should
52 NEVER call this method.
53
54 This method is used remove a pending 'change notification' from its list
55 of pending change notifications. It is okay to call this method even if
56 the Subscriber is not current registered for change notifications.
57
58 This method IS thread safe.
59
60 NOTE: The requirements and/or semantics of Model Point subscription is
61 that Subscriptions, Notifications, and Cancel-of-Subscriptions
62 all happen in a SINGLE thread and that thread is the 'Subscribers'
63 thread.
64 */
65 virtual void removePendingChangingNotification_( SubscriberApi& subscriber ) noexcept = 0;
66
67
68public:
69 /// Virtual destructor
70 virtual ~NotificationApi_() {}
71};
72
73}; // end namespaces
74};
75#endif // end header latch
This class has PACKAGE Scope, i.e.
Definition NotificationApi_.h:30
virtual void addPendingChangingNotification_(SubscriberApi &subscriber) noexcept=0
This method has PACKAGE Scope, i.e.
virtual ~NotificationApi_()
Virtual destructor.
Definition NotificationApi_.h:70
virtual void removePendingChangingNotification_(SubscriberApi &subscriber) noexcept=0
This method has PACKAGE Scope, i.e.
This abstract class defines the Subscriber interface - for change notifications - to a Model Points d...
Definition SubscriberApi.h:34
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20