-
Notifications
You must be signed in to change notification settings - Fork 185
EventEmitter Class Reference
devongovett edited this page Nov 12, 2012
·
2 revisions
The AV.EventEmitter
class enables event subscription and emitting for subclasses. The AV.EventEmitter
class itself does nothing - you must subclass it or use one of its subclasses found in Aurora.
Subscribes the given function to the specified event.
Unsubscribes the given function from the specified event.
Subscribes the given function to the specified event. The function is only invoked the next time the event is fired, after which it is removed.
Invokes each of the functions subscribed to the specified event, passing the specified arguments.