Skip to content

Instantly share code, notes, and snippets.

@a-dminator
Created July 18, 2017 17:30
Show Gist options
  • Save a-dminator/890dda447198d7bc724917873f7668a1 to your computer and use it in GitHub Desktop.
Save a-dminator/890dda447198d7bc724917873f7668a1 to your computer and use it in GitHub Desktop.
Observable.just(1)
.flatMap { digit ->
Observable.just("my digit is $digit")
}
.flatMap { string ->
Observable.just("awesome $string")
}
.subscribeOn(io())
.observeOn(mainThread())
.subscribe { string ->
Log.e("Monad", string)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment