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

13 lines
202 B
Java
Raw Normal View History

2019-03-07 16:19:53 +01:00
package it.cavallium.strangedb.database;
import java.io.IOException;
public interface IDatabase {
void close() throws IOException;
boolean isClosed();
void closeAndClean() throws IOException;
}