Table of Contents

Class LatestOnUpdateFrame

Namespace
Bonsai.Shaders
Assembly
Bonsai.Shaders.dll

Represents an operator that replays the latest notification of the sequence at each update frame event.

public class LatestOnUpdateFrame : Combinator
Inheritance
LatestOnUpdateFrame
Inherited Members

Methods

Process<TSource>(IObservable<TSource>)

Replays the latest notification of an observable sequence at each update frame event.

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

Parameters

source IObservable<TSource>

The observable sequence whose latest notification will be replayed at each update frame event.

Returns

IObservable<TSource>

The sequence of replayed values from the source sequence, sampled at each update frame event.

Type Parameters

TSource

The type of the elements in the source sequence.