concat

signature: concat(observables: ...*): Observable

Subscribe to observables in order as previous completes

:bulb: You can think of concat like a line at a ATM, the next transaction (subscription) cannot start until the previous completes!

:bulb: If throughput, not order, is a primary concern, try merge instead!

Examples

Example 1: Basic concat usage with three observables

( StackBlitz )

// RxJS v6+
import { of, concat } from 'rxjs';

concat(
  of(1, 2, 3),
  // subscribed after first completes
  of(4, 5, 6),
  // subscribed after second completes
  of(7, 8, 9)
)
  // log: 1, 2, 3, 4, 5, 6, 7, 8, 9
  .subscribe(console.log);

Example 2: Display message using concat with delayed observables

( StackBlitz )

Example 2

Example 3: (Warning!) concat with source that does not complete

( StackBlitz )

Additional Resources

:file_folder: Source Code: https://github.com/ReactiveX/rxjs/blob/master/src/internal/operators/concat.ts

Last updated

Was this helpful?