Class SampleOnUpdateFrame
Represents an operator that samples notifications from the sequence whenever there is a new update frame event.
public class SampleOnUpdateFrame : Combinator
- Inheritance
-
SampleOnUpdateFrame
- Inherited Members
Methods
Process<TSource>(IObservable<TSource>)
Samples notifications from an observable sequence whenever there is a new update frame event.
public override IObservable<TSource> Process<TSource>(IObservable<TSource> source)
Parameters
source
IObservable<TSource>The observable sequence whose notifications will be sampled at each update frame event.
Returns
- IObservable<TSource>
The sequence of sampled notifications from the
source
sequence, emitted at each update frame event.
Type Parameters
TSource
The type of the elements in the
source
sequence.