Status Update
Comments
yb...@google.com <yb...@google.com> #2
This is probably happening because there are multiple instances of DataStore active. You should consider managing the DataStore as a singleton. See the attached bug for more info.
lo...@gmail.com <lo...@gmail.com> #3
1.0 is out, keeping my fingers crossed for this to make it into the next release :)
ra...@gmail.com <ra...@gmail.com> #4
This ticket should be merged into https://issuetracker.google.com/issues/63317956 and they should be broadened to include potential changes mentioned by https://issuetracker.google.com/issues/63317956#comment3 . The combined ticket should then be used to either track implementation or rejection.
Description
Version used: beta-2
When I create a delete query for Room like @Query("DELETE FROM TABLE_NAME") I have to use void or int as return type of the annotated method. I would want to be able to also use Completable or Single<Integer> from RxJava 2, as it would be more consistent with the current Room support for RxJava