I have a scenario where I have three http requests that must be executed in order, and after all three emitted a value, I must do a redirect.
I achieved this using concat
concat(request1$, request2$, request3$).subscribe(
() => {},
(err) => {},
() => redirect...
)
But I would like to know if there is an operator that does this specifically (execute in order and emit only when all observables emit).