Table of Contents

Class Combinator

Namespace
Bonsai
Assembly
Bonsai.Core.dll

Provides an abstract base class for operators that preserve the type of the source sequence.

[Combinator]
public abstract class Combinator
Inheritance
Combinator
Derived
Inherited Members

Methods

Process<TSource>(IObservable<TSource>)

Processes an observable sequence into a new sequence of the same element type.

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

Parameters

source IObservable<TSource>

The source sequence to process.

Returns

IObservable<TSource>

An observable sequence of the same data type as source.

Type Parameters

TSource

The type of the elements in the source sequence.