Class LatestOnRenderFrame
Represents an operator that replays the latest notification of the sequence at each render frame event.
public class LatestOnRenderFrame : Combinator
- Inheritance
-
LatestOnRenderFrame
- Inherited Members
Methods
Process<TSource>(IObservable<TSource>)
Replays the latest notification of an observable sequence at each render frame event.
public override IObservable<TSource> Process<TSource>(IObservable<TSource> source)
Parameters
sourceIObservable<TSource>The observable sequence whose latest notification will be replayed at each render frame event.
Returns
- IObservable<TSource>
The sequence of replayed values from the
sourcesequence, sampled at each render frame event.
Type Parameters
TSourceThe type of the elements in the
sourcesequence.