use of app.philm.in.tasks.FetchTmdbMovieImagesRunnable in project philm by chrisbanes.
the class MovieController method fetchMovieImages.
private void fetchMovieImages(final int callingId, String id) {
Preconditions.checkNotNull(id, "id cannot be null");
PhilmMovie movie = mMoviesState.getMovie(id);
if (movie != null && movie.getTmdbId() != null) {
executeTask(new FetchTmdbMovieImagesRunnable(callingId, movie.getTmdbId()));
}
}
Aggregations