Observer class¶
Defined in
Namespace: System.Reactive
Assembly: System.Reactive.dll
Full name: System.Reactive.Observer
Modifiers: public static
Summary¶
Provides a set of static methods for creating observers.
Applies to
netstandard2.0
Methods¶
| Name | Summary |
|---|---|
| static ToObserver | Creates an observer from a notification callback. |
| static ToNotifier | Creates a notification callback from an observer. |
| static Create | Creates an observer from the specified OnNext action. |
| static AsObserver | Hides the identity of an observer. |
| static Checked | Checks access to the observer for grammar violations. This includes checking for multiple OnError or OnCompleted calls, as well as reentrancy in any of the observer methods. If a... |
| static Synchronize | Synchronizes access to the observer such that its callback methods cannot be called concurrently from multiple threads. This overload is useful when coordinating access to an observer. ... |
| static NotifyOn | Schedules the invocation of observer methods on the given scheduler. |
| static ToProgress | Converts an observer to a progress object. |