Package org.apache.openjpa.jdbc.kernel
Interface UpdateManager
- All Known Implementing Classes:
AbstractUpdateManager
,BatchingConstraintUpdateManager
,BatchingOperationOrderUpdateManager
,ConstraintUpdateManager
,OperationOrderUpdateManager
public interface UpdateManager
This interface is used to customize the way that updates are made to
database records.
- Author:
- Abe White
-
Method Summary
Modifier and TypeMethodDescriptionflush
(Collection states, JDBCStore store) Flush the given instances to the data store.boolean
Whether the store context should maintain the order in which instances are dirtied.
-
Method Details
-
orderDirty
boolean orderDirty()Whether the store context should maintain the order in which instances are dirtied. -
flush
Flush the given instances to the data store.
-