Package org.osgi.service.typedevent
Interface UnhandledEventHandler
-
@ConsumerType public interface UnhandledEventHandler
Listener for Unhandled Events.UnhandledEventHandler
objects are registered with the Framework service registry and are notified with an event object when an event is sent, but no other handler is found to receive the event- Author:
- $Id: c6f3ac2430c0caf881b78ffbfdb983331727a9f4 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
notifyUnhandled(java.lang.String topic, java.util.Map<java.lang.String,java.lang.Object> event)
Called by theTypedEventBus
service to notify the listener of an unhandled event.
-
-
-
Method Detail
-
notifyUnhandled
void notifyUnhandled(java.lang.String topic, java.util.Map<java.lang.String,java.lang.Object> event)
Called by theTypedEventBus
service to notify the listener of an unhandled event.- Parameters:
topic
- The topic to which the event was sentevent
- The event that occurred.
-
-