Class DummySuspensionDriver
- Namespace
- ReactiveUI
- Assembly
- ReactiveUI.dll
A suspension driver that does not do anything. Useful potentially for unit testing or for platforms where you don't want to use a Suspension Driver.
- Inheritance
-
Dummy
Suspension Driver
- Implements
- Extension Methods
Constructors
DummySuspensionDriver()
Methods
InvalidateState()
Invalidates the application state (i.e. deletes it from disk).
Returns
- IObservable<Unit>
A completed observable.
LoadState()
Loads the application state from persistent storage.
Returns
- IObservable<object>
An object observable.
SaveState(object)
Saves the application state to disk.
Parameters
state
objectThe application state.
Returns
- IObservable<Unit>
A completed observable.