@@ -83,18 +83,18 @@ public static String databaseName(String persistenceKey, DatabaseId databaseId)
83
83
private final SQLiteBundleCache bundleCache ;
84
84
private final SQLiteIndexManager indexManager ;
85
85
private final SQLiteRemoteDocumentCache remoteDocumentCache ;
86
- private final SQLiteLruReferenceDelegate lruReferenceDelegate ;
86
+ private final SQLiteLruReferenceDelegate referenceDelegate ;
87
87
private final IndexBackfiller indexBackfiller ;
88
88
private final SQLiteTransactionListener transactionListener =
89
89
new SQLiteTransactionListener () {
90
90
@ Override
91
91
public void onBegin () {
92
- lruReferenceDelegate .onTransactionStarted ();
92
+ referenceDelegate .onTransactionStarted ();
93
93
}
94
94
95
95
@ Override
96
96
public void onCommit () {
97
- lruReferenceDelegate .onTransactionCommitted ();
97
+ referenceDelegate .onTransactionCommitted ();
98
98
}
99
99
100
100
@ Override
@@ -124,7 +124,7 @@ public SQLitePersistence(
124
124
this .indexManager = new SQLiteIndexManager (this , this .serializer );
125
125
this .bundleCache = new SQLiteBundleCache (this , this .serializer );
126
126
this .remoteDocumentCache = new SQLiteRemoteDocumentCache (this , this .serializer );
127
- this .lruReferenceDelegate = new SQLiteLruReferenceDelegate (this , params );
127
+ this .referenceDelegate = new SQLiteLruReferenceDelegate (this , params );
128
128
this .indexBackfiller = new IndexBackfiller (this );
129
129
}
130
130
@@ -147,7 +147,7 @@ public void start() {
147
147
e );
148
148
}
149
149
targetCache .start ();
150
- lruReferenceDelegate .start (targetCache .getHighestListenSequenceNumber ());
150
+ referenceDelegate .start (targetCache .getHighestListenSequenceNumber ());
151
151
}
152
152
153
153
@ Override
@@ -165,7 +165,7 @@ public boolean isStarted() {
165
165
166
166
@ Override
167
167
public SQLiteLruReferenceDelegate getReferenceDelegate () {
168
- return lruReferenceDelegate ;
168
+ return referenceDelegate ;
169
169
}
170
170
171
171
public IndexBackfiller getIndexBackfiller () {
0 commit comments