Skip to content

Commit e3d9c2b

Browse files
committed
Remove unused QueryView.resumeToken
1 parent 5296fa7 commit e3d9c2b

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

packages/firestore/src/core/sync_engine.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,6 @@ class QueryView {
7777
* stream to identify this query.
7878
*/
7979
public targetId: TargetId,
80-
/**
81-
* An identifier from the datastore backend that indicates the last state
82-
* of the results that was received. This can be used to indicate where
83-
* to continue receiving new doc changes for the query.
84-
*/
85-
public resumeToken: ProtoByteString,
8680
/**
8781
* The view is responsible for computing the final merged truth of what
8882
* docs are in the query. It gets notified of local and remote changes,
@@ -198,7 +192,6 @@ export class SyncEngine implements RemoteSyncer {
198192
const data = new QueryView(
199193
query,
200194
queryData.targetId,
201-
queryData.resumeToken,
202195
view
203196
);
204197
this.queryViewsByQuery.set(query, data);

0 commit comments

Comments
 (0)