| org.ontoware.rdf2go.model.Commitable
Commitable | public interface Commitable (Code) | | Defining how and when changes are commit to underlying persistence layer.
author: voelkel |
Method Summary | |
public void | commit() Writes all changes to underlying persistence layer - if such a layer is
used by the implementation. | public void | setAutocommit(boolean autocommit) The default value is true. |
commit | public void commit() throws ModelRuntimeException(Code) | | Writes all changes to underlying persistence layer - if such a layer is
used by the implementation. Otherwise nothing happens.
throws: ModelRuntimeException - if the commit could not be executed |
setAutocommit | public void setAutocommit(boolean autocommit)(Code) | | The default value is true.
Parameters: autocommit - If true, all changes are immediately written to the underlyingpersistence layer, if any is used. |
|
|