Created
January 15, 2022 15:41
-
-
Save vikasmain/eac3f08241f486771c38780dfc532648 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
internal fun callMoviesApi() { | |
movieModel.callMoviesApi() | |
.onStart { | |
movieView.showLoadingView() | |
} | |
.catch { | |
movieView.showErrorView() | |
} | |
.onEach { | |
movieView.showMoviesList(it) | |
} | |
.onCompletion { | |
movieView.hideLoadingView() | |
} | |
.launchIn(scope) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment