db.selectLastIndicatorsByPerson(person_id)
.zipWith(db.selectIndicatorTypes()),
Pair::new)
.subscribeOn(Schedulers.computation())
.observeOn(AndroidSchedulers.mainThread())
.subscribe((Pair<AllIndicators, List<IndicatorType>> pair) -> {
.....
}
,
(throwable -> {
.....
}));