Package org.opennms.netmgt.events.api
Interface EventIpcBroadcaster
-
- All Known Implementing Classes:
EventIpcManagerDefaultImpl
,MockEventIpcManager
public interface EventIpcBroadcaster
Back-end interface for the EventIpcManager. Used by eventd to send events to interested listeners.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
broadcastNow(Event event, boolean synchronous)
Called by eventd to send an event to all interested listeners.
-
-
-
Method Detail
-
broadcastNow
void broadcastNow(Event event, boolean synchronous)
Called by eventd to send an event to all interested listeners.- Parameters:
event
- aEvent
object.synchronous
- Whether this call should wait for allEventListener
calls to finish before returning.
-
-