Skip to content

Instantly share code, notes, and snippets.

@jwkidd3
Created January 18, 2017 21:52
Show Gist options
  • Save jwkidd3/54a7c3e54e62f987c3b7249e20e00f49 to your computer and use it in GitHub Desktop.
Save jwkidd3/54a7c3e54e62f987c3b7249e20e00f49 to your computer and use it in GitHub Desktop.
Observable<Integer> values = Observable.range(0, 2);
Subscription subscription = values
.exists(i -> i > 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