Interface OEngine
- All Known Implementing Classes:
OEngineAbstract,OEngineLocalPaginated,OEngineMemory,OEngineRemote
public interface OEngine
-
Method Summary
Modifier and TypeMethodDescriptioncreateStorage(String iURL, long maxWalSegSize, long doubleWriteLogMaxSegSize, int storageId, OrientDBInternal context) getName()getNameFromPath(String dbPath) booleanvoidshutdown()voidstartup()Performs initialization of engine.
-
Method Details
-
getName
String getName() -
createStorage
OStorage createStorage(String iURL, long maxWalSegSize, long doubleWriteLogMaxSegSize, int storageId, OrientDBInternal context) -
shutdown
void shutdown() -
startup
void startup()Performs initialization of engine. Initialization of engine in constructor is prohibited and all initialization steps should be done in this method. -
getNameFromPath
-
isRunning
boolean isRunning()- Returns:
trueif this engine has been started and not shutdown yet,falseotherwise.
-