What is the cleanest way to replace an AsyncTask w...
# rx
b
What is the cleanest way to replace an AsyncTask with RxJava when I don’t return anything after it’s completed or need to handle any error cases? I’ve been using
Single.fromCallable{ // code to run in background here }
— is there a better way?