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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection
flush(java.util.Collection states, JDBCStore store)
Flush the given instances to the data store.boolean
orderDirty()
Whether the store context should maintain the order in which instances are dirtied.
-
-
-
Method Detail
-
orderDirty
boolean orderDirty()
Whether the store context should maintain the order in which instances are dirtied.
-
flush
java.util.Collection flush(java.util.Collection states, JDBCStore store)
Flush the given instances to the data store.
-
-