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