Server: snapshot interface key fix

This commit is contained in:
2025-03-29 12:29:28 +01:00
parent 4a19f69c38
commit 8b3c0a6f2c

View File

@@ -9,7 +9,7 @@ import javax.annotation.Nonnull;
import java.util.Optional;
public interface Snapshot<K extends Comparable<K>, V> extends AutoCloseableNoThrow {
CloseableKvIterator<K, V> getIterator(IteratorStart start, JObjectKey key);
CloseableKvIterator<K, V> getIterator(IteratorStart start, K key);
@Nonnull
Optional<V> readObject(K name);