You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* By default the returned watched query will emit changes whenever a change to the underlying SQLite tables is made.
64
64
* These changes might not be relevant to the query, but the query will emit a new result set.
65
65
*
66
-
* A {@link StandardWatchedQueryOptions.comparator} can be provided to limit the data emissions. The watched query will still
66
+
* A {@link StandardWatchedQueryOptions#comparator} can be provided to limit the data emissions. The watched query will still
67
67
* query the underlying DB on a underlying table changes, but the result will only be emitted if the comparator detects a change in the results.
68
68
*
69
69
* The comparator in this method is optimized and returns early as soon as it detects a change. Each data emission will correlate to a change in the result set,
70
70
* but note that the result set will not maintain internal object references to the previous result set. If internal object references are needed,
71
-
* consider using {@link Query.differentialWatch} instead.
71
+
* consider using {@link Query#differentialWatch} instead.
0 commit comments