Interface StateManagementLegacyIntegration
Legacy action-queue integration for a state-management strategy.
This contract isolates the coordinator factory surface used by the legacy
action queue. Keeping it separate from the root StateManagement contract
makes the legacy integration explicit while graph-queue support continues to
evolve through StateManagementGraphIntegration.
- Since:
- 8.0
-
Method Summary
Modifier and TypeMethodDescriptioncreateDeleteCoordinator(EntityPersister persister) Creates the entity delete coordinator for the given persister.createDeleteRowsCoordinator(CollectionPersister persister) Creates the collection row-delete coordinator for the given persister.createInsertCoordinator(EntityPersister persister) Creates the entity insert coordinator for the given persister.createInsertRowsCoordinator(CollectionPersister persister) Creates the collection row-insert coordinator for the given persister.createMergeCoordinator(EntityPersister persister) Creates the entity merge coordinator for the given persister.createRemoveCoordinator(CollectionPersister persister) Creates the collection remove coordinator for the given persister.createUpdateCoordinator(EntityPersister persister) Creates the entity update coordinator for the given persister.createUpdateRowsCoordinator(CollectionPersister persister) Creates the collection row-update coordinator for the given persister.
-
Method Details
-
createInsertCoordinator
Creates the entity insert coordinator for the given persister. -
createUpdateCoordinator
Creates the entity update coordinator for the given persister. -
createMergeCoordinator
Creates the entity merge coordinator for the given persister. -
createDeleteCoordinator
Creates the entity delete coordinator for the given persister. -
createInsertRowsCoordinator
Creates the collection row-insert coordinator for the given persister. -
createUpdateRowsCoordinator
Creates the collection row-update coordinator for the given persister. -
createDeleteRowsCoordinator
Creates the collection row-delete coordinator for the given persister. -
createRemoveCoordinator
Creates the collection remove coordinator for the given persister.
-