Skip to content

ObservableEx class

Defined in

Namespace: System.Reactive.Linq Assembly: System.Reactive.dll Full name: System.Reactive.Linq.ObservableEx Modifiers: public static

Summary

        Provides a set of static methods for writing in-memory queries over observable sequences.
        

Applies to

netstandard2.0

Methods

NameSummary
static CombineLatestMerges the specified observable sequences into one observable sequence of tuple values whenever any of the observable sequences produces an element.
static WithLatestFromMerges two observable sequences into one observable sequence by combining each element from the first source with the latest element from the second source, if any.
static ZipMerges an observable sequence and an enumerable sequence into one observable sequence of tuple values.
static CreateSubscribes to each observable sequence returned by the iteratorMethod in sequence and returns the observable sequence of values sent to the observer given to the iteratorMethod.
static ExpandExpands an observable sequence by recursively invoking selector, using the specified scheduler to enumerate the queue of obtained sequences.
static ForkJoinRuns two observable sequences in parallel and combines their last elements.
static LetReturns an observable sequence that is the result of invoking the selector on the source sequence, without sharing subscriptions. This operator allows for a fluent style of writing...
static ManySelectComonadic bind operator.
static ToListObservableImmediately subscribes to source and retains the elements in the observable sequence.
Inherited members