Skip to content

Instantly share code, notes, and snippets.

@CristianMG
Last active June 8, 2019 09:15
Show Gist options
  • Select an option

  • Save CristianMG/2ea6ec8831f8faf58dd4a55a64860ef3 to your computer and use it in GitHub Desktop.

Select an option

Save CristianMG/2ea6ec8831f8faf58dd4a55a64860ef3 to your computer and use it in GitHub Desktop.
Android paging Network + Database 1+2 snippet
@Transaction
@Insert(onConflict = OnConflictStrategy.REPLACE)
fun insertAll(list: List<CharacterEntity>): Completable
@Query("""
SELECT * FROM character ORDER BY name ASC
""")
fun getAllPaged(): DataSource.Factory<Int, CharacterEntity
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment