Medical Imaging Interaction Toolkit
2016.11.0
Medical Imaging Interaction Toolkit
|
#include <usServiceEventListenerHook.h>
Public Types | |
typedef ShrinkableMap< ModuleContext *, ShrinkableVector< ServiceListenerHook::ListenerInfo > > | ShrinkableMapType |
Public Member Functions | |
virtual | ~ServiceEventListenerHook () |
virtual void | Event (const ServiceEvent &event, ShrinkableMapType &listeners)=0 |
Service Event Listener Hook Service.
Modules registering this service will be called during service (register, modify, and unregister service) operations.
Definition at line 46 of file usServiceEventListenerHook.h.
typedef ShrinkableMap<ModuleContext*, ShrinkableVector<ServiceListenerHook::ListenerInfo> > ServiceEventListenerHook::ShrinkableMapType |
Definition at line 48 of file usServiceEventListenerHook.h.
|
virtual |
Definition at line 26 of file usServiceEventListenerHook.cpp.
|
pure virtual |
Event listener hook method. This method is called prior to service event delivery when a publishing module registers, modifies or unregisters a service. This method can filter the listeners which receive the event.
event | The service event to be delivered. |
listeners | A map of Module Contexts to a list of Listener Infos for the module's listeners to which the specified event will be delivered. The implementation of this method may remove module contexts from the map and listener infos from the list values to prevent the event from being delivered to the associated listeners. |