The EventDispatcher on which this listener listens for events
The type of event this listener responds to
The handler function that will be called when a matching event is dispatched
Set to the useCapture
argument passed to addEventListener
Set to the priority
argument passed to addEventListener.
Used to sort the listener within the listeners object of the EventDispatcher
This property will be set to true
by the EventDispatcher this listener is bound to when
the listener is removed. This is to make sure the handler is not called, even if the listener
is removed while dispatching the event.
Detaches this event listener from its EventDispatcher. The handler function on this listener will no longer be called in response to dispatched events.
After dispose has been called, this method returns true. Use this method to determine whether dispose() should be run again.
Generated using TypeDoc
Data object that is created on every call to EventDispatcher.addEventListener. The object is saved on the EventDispatcher.listeners object for internal use but is also returned by the addEventListener method as a way to remove the listener.