Skip to content

Instantly share code, notes, and snippets.

@dlew
Last active August 29, 2015 14:26
Show Gist options
  • Save dlew/c824beaeb967fa3c096e to your computer and use it in GitHub Desktop.
Save dlew/c824beaeb967fa3c096e to your computer and use it in GitHub Desktop.
Observable<String> w1 = Observable.just("Hello");
Observable<String> w2 = Observable.just("Goodbye");
Observable.zip(w1, w2, (s1, s2) -> Observable.just(s1 + " and " + s2))
.flatMap(obs -> obs)
.subscribe(System.out::println);
// Outputs "Hello and Goodbye"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment