Method Process
Process<TArray>(IObservable<TArray>)
When overridden in a derived class, returns a sequence of array-like objects where each element is a transformation of the corresponding array in the original sequence.
public abstract IObservable<TArray> Process<TArray>(IObservable<TArray> source) where TArray : Arr
Parameters
sourceIObservable<TArray>The sequence of array-like objects to be transformed.
Returns
- IObservable<TArray>
A sequence of the transformed array-like objects.
Type Parameters
TArrayThe type of the array-like objects in the
sourcesequence.