Signals Version Number
If Signal is active and should broadcast events.
If Signal should keep record of previously dispatched parameters and automatically execute listener during add()/addOnce() if Signal was already dispatched before.
Add a listener to the signal.
Signal handler function.
The priority level of the event listener. Listeners with higher priority will be executed before listeners with lower priority. Listeners with same priority level will be executed at the same order as they were added. (default = 0)
Add listener to the signal that should be removed after first execution (will be executed only once).
Signal handler function.
The priority level of the event listener. Listeners with higher priority will be executed before listeners with lower priority. Listeners with same priority level will be executed at the same order as they were added. (default = 0)
Dispatch/Broadcast Signal to all listeners added to the queue.
Parameters that should be passed to each handler.
any
Remove all bindings from signal and destroy any reference to external objects (destroy Signal object).
any
Forget memorized arguments.
any
Returns a number of listeners attached to the Signal.
number
Stop propagation of the event, blocking the dispatch to next listeners on the queue.
any
Check if listener was attached to Signal.
boolean
Remove a single listener from the dispatch queue.
Function
any