I want to run a method in background using rxjava. I don\'t care about the result.
void myHeavyMethod() { (...) }
So far the only solution I ha
The fromAction() method is what you're looking for.
Completable.fromAction(this::myHeavyMethod)