Package org.apache.openjpa.kernel
Interface SavepointManager
-
- All Known Implementing Classes:
AbstractJDBCSavepointManager,AuditManager,InMemorySavepointManager,JDBC3SavepointManager
public interface SavepointManagerA manager for handling savepoints.- Since:
- 0.3.4
- Author:
- Steve Kim
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OpenJPASavepointnewSavepoint(java.lang.String name, Broker broker)Return a new savepoint for the given name, which may be null.booleansupportsIncrementalFlush()Return whether the savepoints generated by this manager can handle incremental flushes to the datastore.
-
-
-
Method Detail
-
supportsIncrementalFlush
boolean supportsIncrementalFlush()
Return whether the savepoints generated by this manager can handle incremental flushes to the datastore.
-
newSavepoint
OpenJPASavepoint newSavepoint(java.lang.String name, Broker broker)
Return a new savepoint for the given name, which may be null.
-
-