-
public interface EventDispatcherListenerInterface used to intercept events dispatched by {#link EventDispatcher}
-
-
Method Summary
Modifier and Type Method Description abstract voidonEventDispatch(Event event)Called on every time an event is dispatched using {#link EventDispatcher#dispatchEvent}. -
-
Method Detail
-
onEventDispatch
abstract void onEventDispatch(Event event)
Called on every time an event is dispatched using {#link EventDispatcher#dispatchEvent}. Willbe called from the same thread that the event is being dispatched from.
- Parameters:
event- Event that was dispatched
-
-
-
-