Method Process
Process<TSource, TOther>(IObservable<TSource>, IObservable<TOther>)
Subscribes to an observable sequence only after the second sequence produces an element.
public IObservable<TSource> Process<TSource, TOther>(IObservable<TSource> source, IObservable<TOther> other)
Parameters
sourceIObservable<TSource>The sequence to subscribe to.
otherIObservable<TOther>The observable sequence indicating when to subscribe to the
sourcesequence.
Returns
- IObservable<TSource>
An observable sequence that is identical to the
sourcesequence but where subscription is delayed until theothersequence emits a notification.
Type Parameters
TSourceThe type of the elements in the
sourcesequence.TOtherThe type of the elements in the
othersequence.