TestObserver
Namespace: FSharp.Control.Reactive.Testing
Attributes:
[<CompilationRepresentation(4)>]
The Reactive module provides operators for working with TestObserver<_> in F#.
Functions and values
Function or value | Description |
all(o)
Signature: o:ITestableObserver<'a> -> TestNotifications<'a>
Type parameters: 'a
Attributes:
[<Obsolete("Use 'messages' to get all the recored timestamped notifications")>]
|
WARNING: This API is obsolete
Use 'messages' to get all the recored timestamped notifications
Gets recorded timestamped notification messages received by the observer.
|
errors(o)
Signature: o:ITestableObserver<'a> -> exn list
Type parameters: 'a
|
Gets recorded timestamped "OnError" notification messages received by the observer.
|
messages(o)
Signature: o:ITestableObserver<'a> -> TestNotifications<'a>
Type parameters: 'a
|
Gets recorded timestamped notification messages received by the observer.
|
nexts(o)
Signature: o:ITestableObserver<'a> -> 'a list
Type parameters: 'a
|
Gets recorded timestamped "OnNext" notification messages received by the observer.
|