Skip to content

Instantly share code, notes, and snippets.

@Rasalexman
Last active January 18, 2020 23:59
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 Rasalexman/85ef62e34fe0822b5674fd69ba998295 to your computer and use it in GitHub Desktop.
Save Rasalexman/85ef62e34fe0822b5674fd69ba998295 to your computer and use it in GitHub Desktop.
Repository interface with suspend
interface IPageRepository {
suspend fun getNextPageData(page: Int): Result<List<MyUIModel>>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment