We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0754bdd commit e5068d6Copy full SHA for e5068d6
objectbox-rxjava3/src/main/java/io/objectbox/rx/RxBoxStore.java
@@ -28,7 +28,8 @@ public abstract class RxBoxStore {
28
* Using the returned Observable, you can be notified about data changes.
29
* Once a transaction is committed, you will get info on classes with changed Objects.
30
*/
31
- public static <T> Observable<Class> observable(final BoxStore boxStore) {
+ @SuppressWarnings("rawtypes") // BoxStore observer may return any (entity) type.
32
+ public static Observable<Class> observable(BoxStore boxStore) {
33
return Observable.create(emitter -> {
34
final DataSubscription dataSubscription = boxStore.subscribe().observer(data -> {
35
if (!emitter.isDisposed()) {
0 commit comments