Skip to content

Instantly share code, notes, and snippets.

@enginebai
Created September 13, 2020 23:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enginebai/26bc939a5f47834b1f43611a535f8f6a to your computer and use it in GitHub Desktop.
Save enginebai/26bc939a5f47834b1f43611a535f8f6a to your computer and use it in GitHub Desktop.
MovieHunt blog part3 repo
interface MovieRepo {
fun fetchMovieList(category: MovieCategory, pageSize: Int = DEFAULT_PAGE_SIZE): Observable<PagedList<MovieModel>>
}
class MovieRepoImpl : MovieRepo, KoinComponent {
override fun fetchMovieList(
category: MovieCategory,
pageSize: Int
): Observable<PagedList<MovieModel>> {
val dataSourceFactory = MovieListDataSourceFactory(category)
val pagedListConfig = PagedList.Config.Builder()
.setPageSize(DEFAULT_PAGE_SIZE)
.setEnablePlaceholders(false)
.build()
return RxPagedListBuilder(dataSourceFactory, pagedListConfig)
.setFetchScheduler(Schedulers.io())
.buildObservable()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment