strangedb-core/src/main/java/it/cavallium/strangedb/database/IDatabase.java
2019-04-20 15:55:45 +02:00

15 lines
232 B
Java

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