const source = Rx.Observable.from([1, 2, 3, 4, 5]);
const example = source.map(val => { /* asynchronous logic here*/ })
.map(val => { /* asynchronous logic here*/ });
.map(val => { /* asynchronous logic here*/ });
How to make so that each map
waits for the asynchrounous execution of the previous map
?