Notes for Common RxJava Mistakes by Dan Lew

  1. 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