what-the-bank/sources/com/google/firebase/firestore/local/DocumentOverlayCache.java

24 lines
789 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.firebase.firestore.local;
import com.google.firebase.firestore.model.DocumentKey;
import com.google.firebase.firestore.model.ResourcePath;
import com.google.firebase.firestore.model.mutation.Mutation;
import com.google.firebase.firestore.model.mutation.Overlay;
import java.util.Map;
import java.util.SortedSet;
/* loaded from: classes2.dex */
public interface DocumentOverlayCache {
Overlay getOverlay(DocumentKey documentKey);
Map<DocumentKey, Overlay> getOverlays(ResourcePath resourcePath, int i);
Map<DocumentKey, Overlay> getOverlays(String str, int i, int i2);
Map<DocumentKey, Overlay> getOverlays(SortedSet<DocumentKey> sortedSet);
void removeOverlaysForBatchId(int i);
void saveOverlays(int i, Map<DocumentKey, Mutation> map);
}