Skip to content Skip to sidebar Skip to footer

RxJava Group Two Responses One Of Which Might Be NULL With Zip Operator

I want to make two concurent request to Realm database and return results with RxJava. The issue is that one of requests can return NULL object and I have a crash. How can I proper

Solution 1:

You can return Optional from DB and then check if it's present.


Post a Comment for "RxJava Group Two Responses One Of Which Might Be NULL With Zip Operator"