In situations where we need to load data from many...
# android
d
In situations where we need to load data from many sources (e.g. 10 subreddits via API) into one combined list, what is the best pattern to apply? Should we try to wait for all of them to come back before presenting them as a list (e.g. via Observable.zip()), or should we fire them all and update the list each time an API call returns?