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; }