Skip to content

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

NameSummary
static ToObserverCreates an observer from a notification callback.
static ToNotifierCreates a notification callback from an observer.
static CreateCreates an observer from the specified OnNext action.
static AsObserverHides the identity of an observer.
static CheckedChecks 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 SynchronizeSynchronizes 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 NotifyOnSchedules the invocation of observer methods on the given scheduler.
static ToProgressConverts an observer to a progress object.
Inherited members