Skip to content

Instantly share code, notes, and snippets.

@jshvarts
Created October 13, 2019 19:33
Show Gist options
  • Save jshvarts/a4b2168706ea8bbac4a4c4b97974c058 to your computer and use it in GitHub Desktop.
Save jshvarts/a4b2168706ea8bbac4a4c4b97974c058 to your computer and use it in GitHub Desktop.
Default RxJava threading
Observable.just("long", "longer", "longest")
.map(String::length)
.filter { it > 6 }
.subscribe { length -> println("item length $length") }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment