Skip to content

Instantly share code, notes, and snippets.

@bltuckerdevblog
Last active September 25, 2017 03:02
Show Gist options
  • Save bltuckerdevblog/b2c28a6d67ce6cb3c73882e01d06941a to your computer and use it in GitHub Desktop.
Save bltuckerdevblog/b2c28a6d67ce6cb3c73882e01d06941a to your computer and use it in GitHub Desktop.
init {
val pagedListConfig = PagedList.Config.Builder()
.setPageSize(30)
.setPrefetchDistance(30)
.build()
userListLiveData = teamDao.getTeamsAsLivePagedListProvider().create(0, pagedListConfig)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment