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

13 lines
202 B
Java

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