Interface StateManagementGraphIntegration
Graph action-queue integration for a state-management strategy.
The root StateManagement contract identifies the state-management model for
a mapping. This nested integration contract exposes the graph-queue-specific
mutation-plan contributors for that model without mixing graph decomposition
concerns into the legacy coordinator factory surface.
- Since:
- 8.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StateManagementGraphIntegrationThe graph integration used by the standard state-management model. -
Method Summary
Modifier and TypeMethodDescriptionCreates the collection mutation-plan contributor for the given persister.default EntityMutationPlanContributorCreates the entity mutation-plan contributor for the given persister.
-
Field Details
-
STANDARD
The graph integration used by the standard state-management model. It does not contribute any alternate graph mutation plans.
-
-
Method Details
-
createEntityMutationPlanContributor
default EntityMutationPlanContributor createEntityMutationPlanContributor(EntityPersister persister) Creates the entity mutation-plan contributor for the given persister. -
createCollectionMutationPlanContributor
default CollectionMutationPlanContributor createCollectionMutationPlanContributor(CollectionPersister persister) Creates the collection mutation-plan contributor for the given persister.
-