in the presenter I should ideally be doing this ``...
# rx
o
in the presenter I should ideally be doing this
Copy code
carsRepository.getCars()
                .subscribeOn(backgroundScheduler)
                .toList()
                .observeOn(mainScheduler)
                .subscribe(cars -> view.addCars(cars));