26 lines
663 B
Java
26 lines
663 B
Java
package com.google.firebase.firestore.local;
|
|
|
|
import com.google.firebase.firestore.model.DocumentKey;
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
/* loaded from: classes2.dex */
|
|
public interface ReferenceDelegate {
|
|
void addReference(DocumentKey documentKey);
|
|
|
|
long getCurrentSequenceNumber();
|
|
|
|
void onTransactionCommitted();
|
|
|
|
void onTransactionStarted();
|
|
|
|
void removeMutationReference(DocumentKey documentKey);
|
|
|
|
void removeReference(DocumentKey documentKey);
|
|
|
|
void removeTarget(TargetData targetData);
|
|
|
|
void setInMemoryPins(ReferenceSet referenceSet);
|
|
|
|
void updateLimboDocument(DocumentKey documentKey);
|
|
}
|