Interface DeleteRowsCoordinator
-
- All Superinterfaces:
CollectionOperationCoordinator
- All Known Implementing Classes:
DeleteRowsCoordinatorNoOp
,DeleteRowsCoordinatorStandard
,DeleteRowsCoordinatorTablePerSubclass
public interface DeleteRowsCoordinator extends CollectionOperationCoordinator
Coordinates the deletion of entries removed from the collection -- For collections with a collection-table, deletes rows from the collection table.
- For one-to-many, unsets the collection-key for the matched row in the association table.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
deleteRows(PersistentCollection<?> collection, Object key, SharedSessionContractImplementor session)
Perform the deletions-
Methods inherited from interface org.hibernate.persister.collection.mutation.CollectionOperationCoordinator
getMutationTarget
-
-
-
-
Method Detail
-
deleteRows
void deleteRows(PersistentCollection<?> collection, Object key, SharedSessionContractImplementor session)
Perform the deletions
-
-