Notes for Common RxJava Mistakes by Dan Lew
- Multiple subscribeOn call doesn’t work, the first subscribeOn wins.
For Example:
Observable.just(“Hello”) //io
.subscribeOn(Schedulers.io())
.map() //io
.subscribeOn(Schedulers.computation())
.subscribe(); //io