IUnicastSource
Types
interface IUnicastSource<GValue> extends ISource<GValue> {
getObserver(): IObserver<GValue> | null;
}
Definition
An UnicastSource is used to emit one value to only one Observer.
You can create an IUnicastSource with the function createUnicastSource.
This is partially equivalent to the Subject.