var arr = [obs1, obs2, obs3];
Observable.forkJoin(...arr).subscribe(function (observableItems) {})
Runs observables in parallel and return an array.
How can I run the observables sequentially and return an array. I do not want to get called for each observable, so concat()
is not appropriate for me.
I want to receive the same final result as forkJoin
but run sequentially.
Does it exist? or do I have to code my own observable pattern?