Skip to content

Instantly share code, notes, and snippets.

@jwkidd3
Created January 18, 2017 21:35
Show Gist options
  • Save jwkidd3/f386f8341b70c8710aa88e8082979bc2 to your computer and use it in GitHub Desktop.
Save jwkidd3/f386f8341b70c8710aa88e8082979bc2 to your computer and use it in GitHub Desktop.
Observable<Integer> values = Observable.range(0,10);
Subscription oddNumbers = values
.filter(v -> v % 2 == 0)
.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