Subject
Namespace: FSharp.Control.Reactive
Attributes:
[<CompilationRepresentation(4)>]
The Reactive module provides operators working with Subjects in F#.
Functions and values
Function or value | Description |
onCompleted(s)
Signature: s:SubjectBase<'a> -> SubjectBase<'a>
Type parameters: 'a
|
Notifies all subscribed observers about the end of the sequence.
|
onError ex s
Signature: ex:exn -> s:SubjectBase<'a> -> SubjectBase<'a>
Type parameters: 'a
|
Notifies all subscribed observers about the specified exception.
|
onNext x s
Signature: x:'a -> s:SubjectBase<'a> -> SubjectBase<'a>
Type parameters: 'a
|
Notifies all subscribed observers about the arrival of the specified element in the sequence.
|
onNexts xs s
Signature: xs:seq<'?8898> -> s:'?8899 -> '?8899
Type parameters: '?8898, '?8899
|
Notifies all subscribed observers about the arrival of the specified elements in the sequence.
|