Skip to content

Instantly share code, notes, and snippets.

@raghunandankavi2010
Created January 14, 2021 03:48
Show Gist options
  • Save raghunandankavi2010/d24707da8f9335febfa979e587daccfb to your computer and use it in GitHub Desktop.
Save raghunandankavi2010/d24707da8f9335febfa979e587daccfb to your computer and use it in GitHub Desktop.
rxjava equivalent in kotlin flow
flow<String> {
// suspending call here
emit("Foo")
}
.onStart { // show loading }
.onCompletion { // hide loading }
.catch { // exception handling }
.onEach { // equivalent to rx onNext }
.launchIn(yourScope)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment