Skip to content

Instantly share code, notes, and snippets.

@jwkidd3
Created January 18, 2017 21:48
Show Gist options
  • Save jwkidd3/70bd858fd14adadc9eeeb5aa4d4c26bc to your computer and use it in GitHub Desktop.
Save jwkidd3/70bd858fd14adadc9eeeb5aa4d4c26bc to your computer and use it in GitHub Desktop.
Observable<Integer> values = Observable.range(0, 5);
Subscription first2 = values
.take(2)
.subscribe(
v -> System.out.println(v),
e -> System.out.println("Error: " + e),
() -> System.out.println("Completed")
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment