BACK
ReferenceconcatAll
Reference · 48

concatAll

concatAll

rxjs.dev

Flattens inner Observables strictly one after another.

Signature

concatAll(): OperatorFunction, T>

What it does

Subscribes to the next inner Observable only after the previous one completes. Order is preserved; there is no concurrency.

When to use

Task queues, sequential saves, scenarios where order matters more than speed.

See also

concatMap, mergeAll, switchAll

script.ts // TypeScript
CONSOLE · Console output
Hit Run to see the result...