Table of Contents

Class ConcatAllOperator

Namespace
RxSharp.Operators
Assembly
RxSharp.dll

Extension methods implementing the concatAll operator.

public static class ConcatAllOperator
Inheritance
System.Object
ConcatAllOperator

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

source Observable<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

T

The type of values emitted by the inner observables.