Subject<'a>
Namespace: FSharp.Control.Reactive
Static members
Static member | Description |
Subject.async
Signature: AsyncSubject<'a>
|
Represents the result of an asynchronous operation.
The last value before the OnCompleted notification, or the error received through OnError, is sent to all subscribed observers.
CompiledName: get_async
|
Subject.behavior(x)
Signature: x:'a -> BehaviorSubject<'a>
|
Represents a value that changes over time.
Observers can subscribe to the subject to receive the last (or initial) value and all subsequent notifications.
|
Subject.broadcast
Signature: Subject<'a>
|
Represents and object that is both an observable sequence as well as an observer.
Each notification is broadcasted to all subscribed observers.
CompiledName: get_broadcast
|
Subject.replay
Signature: ReplaySubject<'a>
|
Represents an object that is both an observable sequence as well as an observer.
Each notification is broadcasted to all subscribed and future observers, subject to buffer trimming policies.
CompiledName: get_replay
|