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 31c386c commit a7463cfCopy full SHA for a7463cf
objectbox-rxjava/src/main/java/io/objectbox/rx/RxQuery.java
@@ -85,7 +85,8 @@ public void cancel() throws Exception {
85
86
/**
87
* The returned Observable emits Query results as Lists.
88
- * Never completes, so you will get updates when underlying data changes.
+ * Never completes, so you will get updates when underlying data changes
89
+ * (see {@link Query#subscribe()} for details).
90
*/
91
public static <T> Observable<List<T>> observable(final Query<T> query) {
92
return Observable.create(new ObservableOnSubscribe<List<T>>() {
0 commit comments