Class: EventDispatcherListener

EventDispatcherListener

Simple interface to be implemented to listen for the default EventDispatcher events. Note that there is no need to implement all of the methods as if an event method is missing it is simply not fired.

new EventDispatcherListener()

This constructor does nothing

Method Summary

onListenEnd
Event that is fired when a listener is removed from an EventDispatcher through EventDispatcher#removeListener
onListenStart
Event that is fired when a listener is added to an EventDispatcher through EventDispatcher#addListener

Method Detail

onListenEnd(dispatcher)

Event that is fired when a listener is removed from an EventDispatcher through EventDispatcher#removeListener
Parameters:
Name Type Description
dispatcher EventDispatcher the dispatcher that fired the event.

onListenStart(dispatcher)

Event that is fired when a listener is added to an EventDispatcher through EventDispatcher#addListener
Parameters:
Name Type Description
dispatcher EventDispatcher the dispatcher that fired the event.