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 ced642c commit 253347aCopy full SHA for 253347a
src/SIL.XForge.Scripture/ClientApp/src/xforge-common/models/realtime-query.ts
@@ -72,6 +72,10 @@ export class RealtimeQuery<T extends RealtimeDoc = RealtimeDoc> {
72
return this._ready$;
73
}
74
75
+ /** Emitted when a document in the query results is changed remotely. Note that because remote document changes, and
76
+ * remote query results changes, are not announced or applied in sync, `docs` might not be up-to-date when
77
+ * `remoteDocChanges$` is emitted.
78
+ */
79
get remoteDocChanges$(): Observable<any> {
80
return this._remoteDocChanges$.asObservable();
81
0 commit comments