Method Process
Process<TSource, TOther>(IObservable<TSource>, IObservable<TOther>)
Merges the specified sources into one observable sequence by emitting a pair with the latest source elements only when the first observable sequence produces an element.
public IObservable<Tuple<TSource, TOther>> Process<TSource, TOther>(IObservable<TSource> source, IObservable<TOther> other)
Parameters
sourceIObservable<TSource>The first observable sequence.
otherIObservable<TOther>The other observable sequence.
Returns
- IObservable<Tuple<TSource, TOther>>
An observable sequence containing the result of combining the latest elements of the sources into pairs only when the first sequence produces an element.
Type Parameters
TSourceThe type of the elements in the
sourcesequence.TOtherThe type of the elements in the
othersequence.