Skip to content

Commit a7463cf

Browse files
RxQuery: point to Query docs for details.
Query docs have details on when new result list is emitted.
1 parent 31c386c commit a7463cf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

objectbox-rxjava/src/main/java/io/objectbox/rx/RxQuery.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ public void cancel() throws Exception {
8585

8686
/**
8787
* The returned Observable emits Query results as Lists.
88-
* Never completes, so you will get updates when underlying data changes.
88+
* Never completes, so you will get updates when underlying data changes
89+
* (see {@link Query#subscribe()} for details).
8990
*/
9091
public static <T> Observable<List<T>> observable(final Query<T> query) {
9192
return Observable.create(new ObservableOnSubscribe<List<T>>() {

0 commit comments

Comments
 (0)