Skip to content

Instantly share code, notes, and snippets.

@jwkidd3
Created January 18, 2017 21:37
Show Gist options
  • Save jwkidd3/4242179e9f4d2e630deac3b2364bf9ae to your computer and use it in GitHub Desktop.
Save jwkidd3/4242179e9f4d2e630deac3b2364bf9ae to your computer and use it in GitHub Desktop.
Observable<Integer> values = Observable.create(o -> {
o.onNext(1);
o.onNext(1);
o.onNext(2);
o.onNext(3);
o.onNext(2);
o.onCompleted();
});
Subscription subscription = values
.distinct()
.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