1#ifndef Cpl_Dm_SubscriberComposer_h_
2#define Cpl_Dm_SubscriberComposer_h_
35template <
class CONTEXT,
class MP>
69template <
class CONTEXT,
class MP>
72 NotificationFunc_T notifyCallback )
74 , m_context( context )
75 , m_notificationCb( notifyCallback )
80template <
class CONTEXT,
class MP>
84 return (m_context.*m_notificationCb)(modelPointThatChanged, clientObserver);
This class extends the Cpl::System::EventLoop class to support the asynchronous change notification g...
Definition EventLoop.h:44
This abstract class defines the Subscriber interface - for change notifications - to a Model Points d...
Definition SubscriberApi.h:34
This template class is a composer pattern/class that manages the callback function for a Model Point'...
Definition SubscriberComposer.h:37
SubscriberComposer(Cpl::Dm::EventLoop &myEventLoop, CONTEXT &context, NotificationFunc_T notifyCallback)
Constructor.
Definition SubscriberComposer.h:70
NotificationFunc_T m_notificationCb
Method (in my Context) to call for the change notification.
Definition SubscriberComposer.h:50
void modelPointChanged(MP &modelPointThatChanged, SubscriberApi &clientObserver) noexcept
See Cpl::Dm::Subscriber<MP>
Definition SubscriberComposer.h:81
CONTEXT & m_context
Class the implement the callback.
Definition SubscriberComposer.h:47
void(CONTEXT::* NotificationFunc_T)(MP &modelPointThatChanged, SubscriberApi &clientObserver)
Define a callback method function for the Change Notification callback (See Cpl::Dm::Subscriber<MP>::...
Definition SubscriberComposer.h:42
This template class defines a type safe Subscriber.
Definition Subscriber.h:82
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20