Created
October 9, 2018 22:50
-
-
Save zsoltk/edbd9356ca2ec05cff2c317b800829bf to your computer and use it in GitHub Desktop.
This file contains hidden or 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
val output: ObservableSource<String> = Observable.just("item1", "item2", "item3") | |
val input: Consumer<String> = Consumer { System.out.println(it) } | |
val disposable = Observable.wrap(output).subscribe(input) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment