strangedb-core/src/main/java/it/cavallium/strangedb/database/IDatabase.java

15 lines
234 B
Java

package it.cavallium.strangedb.database;
import java.io.IOException;
public interface IDatabase {
int DISK_BLOCK_SIZE = 2*4096;
void close() throws IOException;
boolean isClosed();
void closeAndClean() throws IOException;
}