IMulticastSource
Types
interface IMulticastSource<GValue> extends ISource<GValue> {
getObservers(): readonly IObserver<GValue>[]; // readonly list of observers for this source
}
Definition
A MulticastSource is used to emit one value to multiple Observers.
You can create a IMulticastSource with the function createMulticastSource.
This is equivalent to the Subject.