interface Signal<T>
package haxe.async
implemented by ArraySignal, WrappedSignal
Available on all platforms
Signals are a type-safe system to emit events. A signal will calls its listeners whenever something (the event that the signal represents) happens, passing along any relevant associated data.
Signals which have no associated data should use haxe.NoData as their type
parameter.