Slide 31
Slide 31 text
Race Conditions
moviesRemoteRepository.getUpcoming(currentPageCount)
.map(new Function() {
public Movie apply(Movie movie) throws Exception {
return MovieUtil.mapMovieFields(
movie, imageConfiguration, genres);
}
})
.toList()
//...