Created
October 1, 2018 13:47
-
-
Save CoderJava/73bd65db811ff05763e1ed35388061d0 to your computer and use it in GitHub Desktop.
Operator from RxJava
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
| public class RxOperatorFrom { | |
| public static void main(String[] args) { | |
| String[] names = new String[]{"Yudi Setiawan", "Harli Lopies", "Rosalia"}; | |
| Observable.fromArray(names) | |
| .subscribe(System.out::println); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment