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"