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¶
| Name | Summary |
|---|---|
| static CombineLatest | Merges the specified observable sequences into one observable sequence of tuple values whenever any of the observable sequences produces an element. |
| static WithLatestFrom | Merges 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 Zip | Merges an observable sequence and an enumerable sequence into one observable sequence of tuple values. |
| static Create | Subscribes 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 Expand | Expands an observable sequence by recursively invoking selector, using the specified scheduler to enumerate the queue of obtained sequences. |
| static ForkJoin | Runs two observable sequences in parallel and combines their last elements. |
| static Let | Returns 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 ManySelect | Comonadic bind operator. |
| static ToListObservable | Immediately subscribes to source and retains the elements in the observable sequence. |