ObservableUpdate<'T>
Namespace: FSharpx.Control
Union type that represents different messages that can be sent to the IObserver interface. The IObserver type is equivalent to a type that has just OnNext method that gets 'ObservableUpdate' as an argument.
Union Cases
Union Case | Description |
Completed
Signature:
|
|
Error(exn)
Signature: exn
|
|
Next('T)
Signature: 'T
|