Library: Foundation
Package: Notifications
Header: Poco/NotificationCenter.h
Description
A NotificationCenter is essentially a notification dispatcher. It notifies all observers of notifications meeting specific criteria. This information is encapsulated in Notification objects. Client objects register themselves with the notification center as observers of specific notifications posted by other objects. When an event occurs, an object posts an appropriate notification to the notification center. The notification center invokes the registered method on each matching observer, passing the notification as argument.
The order in which observers receive notifications is undefined. It is possible for the posting object and the observing object to be the same. The NotificationCenter delivers notifications to observers synchronously. In other words the postNotification() method does not return until all observers have received and processed the notification. If an observer throws an exception while handling a notification, the NotificationCenter stops dispatching the notification and postNotification() rethrows the exception.
In a multithreaded scenario, notifications are always delivered in the thread in which the notification was posted, which may not be the same thread in which an observer registered itself.
The NotificationCenter class is basically a C++ implementation of the NSNotificationCenter class found in Apple's Cocoa (or OpenStep).
While handling a notification, an observer can unregister itself from the notification center, or it can register or unregister other observers. Observers added during a dispatch cycle will not receive the current notification.
The method receiving the notification must be implemented as
void handleNotification(MyNotification* pNf);
The handler method gets co-ownership of the Notification object and must release it when done. This is best done with an AutoPtr:
void MyClass::handleNotification(MyNotification* pNf)
{
AutoPtr<MyNotification> nf(pNf);
...
}
Alternatively, the NObserver class template can be used to register a callback method. In this case, the callback method receives the Notification in an AutoPtr and thus does not have to deal with object ownership issues:
void MyClass::handleNotification(const AutoPtr<MyNotification>& pNf)
{
...
}
Inheritance
Known Derived Classes: AsyncNotificationCenter
Member Summary
Member Functions: addNObserver, addObserver, backlog, clear, countObservers, defaultCenter, hasObserver, hasObservers, mutex, notifyObservers, observersToNotify, postNotification, removeNObserver, removeObserver
Types Aliases
AbstractObserverPtr
using AbstractObserverPtr = SharedPtr < AbstractObserver >;
ObserverList
using ObserverList = std::vector < AbstractObserverPtr >;
Constructors
NotificationCenter
Creates the NotificationCenter.
Destructor
~NotificationCenter
virtual ~NotificationCenter();
Destroys the NotificationCenter.
Member Functions
addNObserver
template < class C, class N > void addNObserver(
C & object,
void (C::* method)(const AutoPtr < N > &) param317,
bool (C::* matcher)(const std::string &)const param318 = nullptr
);
Convenience method for registering an NObserver. Creates an NObserver<C, N> with optional matcher and registers it. Usage:
notificationCenter.addNObserver(*this, &MyClass::handleNotification); notificationCenter.addNObserver(*this, &MyClass::handleNotification, &MyClass::matchNotification);
addObserver
void addObserver(
const AbstractObserver & observer
);
Registers an observer with the NotificationCenter. Usage:
NObserver<MyClass, MyNotification> obs(*this, &MyClass::handleNotification); notificationCenter.addObserver(obs);
Note: Observer<C, N> is deprecated; use NObserver<C, N> instead.
addObserver
template < class C, class N > void addObserver(
C & object,
void (C::* method)(N *) param315
);
@deprecated This convenience method instantiates the deprecated Observer<C, N> class template, which triggers a compiler warning. The Observer class requires manual memory management of notifications (caller must call release()), while NObserver handles this automatically via AutoPtr.
Use addNObserver() instead, which creates an NObserver that passes notifications as const AutoPtr<N>&, providing automatic memory management.
Migration example:
// Old (deprecated):
nc.addObserver(*this, &MyClass::onEvent);
void MyClass::onEvent(MyNotification* pNf) { pNf->release(); }
// New (recommended):
nc.addNObserver(*this, &MyClass::onEvent);
void MyClass::onEvent(const AutoPtr<MyNotification>& pNf) { /* no release needed */ }
backlog
virtual int backlog() const;
Returns the sum of queued notifications for all observers (applies only to asynchronous observers, regular observers post notifications syncronously and never have a backlog).
clear
void clear();
Disables and removes all observers.
This can be called to ensure that no more notifications will be dispatched to observers, even if they are currently being dispatched.
countObservers
std::size_t countObservers() const;
Returns the number of registered observers.
defaultCenter
static NotificationCenter & defaultCenter();
Returns a reference to the default NotificationCenter.
hasObserver
bool hasObserver(
const AbstractObserver & observer
) const;
Returns true if the observer is registered with this NotificationCenter.
hasObservers
bool hasObservers() const;
Returns true iff there is at least one registered observer.
Can be used to improve performance if an expensive notification shall only be created and posted if there are any observers.
postNotification
virtual void postNotification(
Notification::Ptr pNotification
);
Posts a notification to the NotificationCenter. The NotificationCenter then delivers the notification to all interested observers. If an observer throws an exception, dispatching terminates and the exception is rethrown to the caller. Ownership of the notification object is claimed and the notification is released before returning. Therefore, a call like
notificationCenter.postNotification(new MyNotification);
does not result in a memory leak.
removeNObserver
template < class C, class N > void removeNObserver(
C & object,
void (C::* method)(const AutoPtr < N > &) param319,
bool (C::* matcher)(const std::string &)const param320 = nullptr
);
Convenience method for unregistering an NObserver. Removes the NObserver<C, N> with the given callback and matcher.
removeObserver
void removeObserver(
const AbstractObserver & observer
);
Unregisters an observer with the NotificationCenter.
removeObserver
template < class C, class N > void removeObserver(
C & object,
void (C::* method)(N *) param316
);
@deprecated This convenience method instantiates the deprecated Observer<C, N> class template. See addObserver() deprecation note for migration details.
mutex
RWLock & mutex();
notifyObservers
virtual void notifyObservers(
Notification::Ptr & pNotification
);
observersToNotify
ObserverList observersToNotify(
const Notification::Ptr & pNotification
) const;