Table of Contents

Method Process

Namespace
Bonsai.Reactive
Assembly
Bonsai.Core.dll

Process<TSource, TOther>(IObservable<TSource>, IObservable<TOther>)

Returns the elements from an observable sequence only after the second sequence emits a notification.

public IObservable<TSource> Process<TSource, TOther>(IObservable<TSource> source, IObservable<TOther> other)

Parameters

source IObservable<TSource>

The source sequence to propagate elements for.

other IObservable<TOther>

The observable sequence indicating the time at which to start taking elements from the source sequence.

Returns

IObservable<TSource>

An observable sequence containing the elements of the source sequence emitted after the other sequence emits a notification.

Type Parameters

TSource

The type of the elements in the source sequence.

TOther

The type of the elements in the other sequence.