Table of Contents

Class Combinator<TSource, TResult>

Namespace
Bonsai
Assembly
Bonsai.Core.dll

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

[Combinator]
public abstract class Combinator<TSource, TResult>

Type Parameters

TSource

The type of the elements in the source sequence.

TResult

The type of the elements in the result sequence.

Inheritance
Combinator<TSource, TResult>
Derived
Inherited Members

Methods

Process(IObservable<TSource>)

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

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

Parameters

source IObservable<TSource>

The source sequence to process.

Returns

IObservable<TResult>

An observable sequence with elements of type TResult.