Aug 9, 2017 · 1 min read
Hi,
const [flight, forecast] = yield [call(loadFlight, departure.flightID), call(loadForecast, departure.date)];
and
const [flight, forecast] = yield all[call(loadFlight, departure.flightID), call(loadForecast, departure.date)];
I do not know the difference between the two.
I also do not see the document mentions the first way.