-
public interface EventDispatcherListener
Interface used to intercept events dispatched by {#link EventDispatcher}
-
-
Method Summary
Modifier and Type Method Description abstract void
onEventDispatch(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
-
-
-
-