CavalliumDBEngine/src/main/java/it/cavallium/dbengine/database/LLSingleton.java

12 lines
291 B
Java
Raw Normal View History

2020-12-07 22:15:18 +01:00
package it.cavallium.dbengine.database;
import java.io.IOException;
import org.jetbrains.annotations.Nullable;
public interface LLSingleton extends LLKeyValueDatabaseStructure {
byte[] get(@Nullable LLSnapshot snapshot) throws IOException;
void set(byte[] value) throws IOException;
}