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/755d3e7263c76b75c634ef1f048520c0 to your computer and use it in GitHub Desktop.
Save Rasalexman/755d3e7263c76b75c634ef1f048520c0 to your computer and use it in GitHub Desktop.
Repository abstraction with Flow
interface IPageRepository {
suspend fun getNextPageData(eventPageLiveData: LiveData<ViewEvent<Int>>): Flow<Result<List<MyUIModel>>>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment