Method Process
Process<TSource>(IObservable<TSource>)
Draws the specified scene whenever an observable sequence emits a notification.
public override IObservable<TSource> Process<TSource>(IObservable<TSource> source)
Parameters
source
IObservable<TSource>The sequence of notifications used to start drawing the scene.
Returns
- IObservable<TSource>
An observable sequence that is identical to the
source
sequence but where there is an additional side effect of drawing the specified scene whenever the sequence emits a notification.
Type Parameters
TSource
The type of the elements of the
source
sequence.