Skip to content

Instantly share code, notes, and snippets.

@nickebbutt
Last active July 25, 2016 09:04
Show Gist options
  • Save nickebbutt/cdd36b08c62abb6168bd to your computer and use it in GitHub Desktop.
Save nickebbutt/cdd36b08c62abb6168bd to your computer and use it in GitHub Desktop.
Make an event driven Fruit Salad using RXJava Observable combineLatest
Observable<Orange> oranges = BehaviorSubject.create();
Observable<Apple> apples = BehaviorSubject.create();
Observable<FruitSalad> salad = Observable.combineLatest(oranges, apples, (o, a) ->
new FruitSalad(o, a);
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment