Skip to content

Instantly share code, notes, and snippets.

@kota1921
Last active July 6, 2017 10:18
Show Gist options
  • Save kota1921/1438cf6c4c966d86669fb13478e49971 to your computer and use it in GitHub Desktop.
Save kota1921/1438cf6c4c966d86669fb13478e49971 to your computer and use it in GitHub Desktop.
rx-array-download
public Observable<List<SomeModel>> loadItems() {
return apiService.getListOfElement()
.flatMapIterable(Result::getElements)
.flatMap(element -> apiService.getDetailedElement(element.getId()))
.toList()
.toObservable();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment