Skip to content

Instantly share code, notes, and snippets.

@VictorAlbertos
Last active November 18, 2020 14:49
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 VictorAlbertos/1996fd0924198d267f74449791abcc50 to your computer and use it in GitHub Desktop.
Save VictorAlbertos/1996fd0924198d267f74449791abcc50 to your computer and use it in GitHub Desktop.
class SampleRepository {
suspend fun getNextPage(lastSeenId: Int): List<Int> {
return withContext(Dispatchers.IO) {
(lastSeenId..lastSeenId + PAGE_SIZE).map { it }
}
}
companion object {
const val PAGE_SIZE = 20
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment