Table of Contents

Class Combinator<TResult>

Namespace
Bonsai
Assembly
Bonsai.Core.dll

Provides an abstract base class for operators that process an observable sequence into another sequence of the specified element type.

[Combinator]
public abstract class Combinator<TResult>

Type Parameters

TResult

The type of the elements in the result sequence.

Inheritance
Combinator<TResult>
Derived
Inherited Members

Methods

Process<TSource>(IObservable<TSource>)

Processes the source sequence into a new sequence of the specified element type.

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

Parameters

source IObservable<TSource>

The source sequence to process.

Returns

IObservable<TResult>

An observable sequence with elements of type TResult.

Type Parameters

TSource

The type of the elements in the source sequence.