Atualização de maio de 2019 usando RxJs v6
Achei as outras respostas úteis e gostaria de oferecer um exemplo para a resposta de Arnaud sobre o zip
uso.
Aqui está um trecho mostrando a equivalência entre Promise.all
e o rxjs zip
(observe também, em rxjs6 como o zip agora é importado usando "rxjs" e não como um operador).
import { zip } from "rxjs";
const the_weather = new Promise(resolve => {
setTimeout(() => {
resolve({ temp: 29, conditions: "Sunny with Clouds" });
}, 2000);
});
const the_tweets = new Promise(resolve => {
setTimeout(() => {
resolve(["I like cake", "BBQ is good too!"]);
}, 500);
});
let source$ = zip(the_weather, the_tweets);
source$.subscribe(([weatherInfo, tweetInfo]) =>
console.log(weatherInfo, tweetInfo)
);
Promise.all([the_weather, the_tweets]).then(responses => {
const [weatherInfo, tweetInfo] = responses;
console.log(weatherInfo, tweetInfo);
});
A saída de ambos é a mesma. Executar o acima dá:
{ temp: 29, conditions: 'Sunny with Clouds' } [ 'I like cake', 'BBQ is good too!' ]
{ temp: 29, conditions: 'Sunny with Clouds' } [ 'I like cake', 'BBQ is good too!' ]