Table of Contents

Method Process

Namespace
Bonsai.Reactive
Assembly
Bonsai.Core.dll

Process<TSource>(IObservable<TSource>)

Returns a specified number of contiguous elements from the end of an observable sequence.

public override IObservable<TSource> Process<TSource>(IObservable<TSource> source)

Parameters

source IObservable<TSource>

The sequence to take elements from.

Returns

IObservable<TSource>

An observable sequence containing the specified number of elements from the end of the source sequence.

Type Parameters

TSource

The type of the elements in the source sequence.