Class ConcatAllOperator
Extension methods implementing the concatAll operator.
public static class ConcatAllOperator
- Inheritance
-
System.ObjectConcatAllOperator
Methods
ConcatAll<T>(Observable<Observable<T>>)
Converts a higher-order observable (an observable of observables) into a first-order observable by
concatenating the inner observables in order: the next inner observable is only subscribed to once the
previous one has completed. Equivalent to source.ConcatMap(x => x).
public static Observable<T> ConcatAll<T>(this Observable<Observable<T>> source)
Parameters
sourceObservable<Observable<T>>The higher-order source sequence.
Returns
- Observable<T>
An observable that emits every inner observable's values in sequence, in source order.
Type Parameters
TThe type of values emitted by the inner observables.