In this talk, I'm giving you 5 useful tips of RxJava you might not know.
Reference
- Subscriptions#empty()
http://reactivex.io/RxJava/javadoc/rx/subscriptions/Subscriptions.html#empty()
- SerialSubscription
http://reactivex.io/RxJava/javadoc/rx/subscriptions/SerialSubscription.html
- Observable#compose(Transformer)
http://reactivex.io/RxJava/javadoc/rx/Observable.html#compose(rx.Observable.Transformer)
- Observable.fromCallable(Callable)
http://reactivex.io/RxJava/javadoc/rx/Observable.html#fromCallable(java.util.concurrent.Callable)
- Don't break the chain: use RxJava's compose() operator
http://blog.danlew.net/2015/03/02/dont-break-the-chain/
- Loading data from multiple sources with RxJava
http://blog.danlew.net/2015/06/22/loading-data-from-multiple-sources-with-rxjava/
- dlew/rxjava-multiple-sources-sample: Sample code demonstrating loading multiple data sources via RxJava
https://github.com/dlew/rxjava-multiple-sources-sample/