Package org.hibernate
Interface CustomEntityDirtinessStrategy.DirtyCheckContext
-
- Enclosing interface:
- CustomEntityDirtinessStrategy
public static interface CustomEntityDirtinessStrategy.DirtyCheckContextA callback to drive dirty checking. Handed to theCustomEntityDirtinessStrategy.findDirty(java.lang.Object, org.hibernate.persister.entity.EntityPersister, org.hibernate.Session, org.hibernate.CustomEntityDirtinessStrategy.DirtyCheckContext)method so that it can callback on to it if it wants to handle dirty checking rather than using Hibernate's default checking
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddoDirtyChecking(CustomEntityDirtinessStrategy.AttributeChecker attributeChecker)The callback to indicate that dirty checking (the dirty attribute determination phase) should be handled by the callingCustomEntityDirtinessStrategyusing the givenCustomEntityDirtinessStrategy.AttributeChecker.
-
-
-
Method Detail
-
doDirtyChecking
void doDirtyChecking(CustomEntityDirtinessStrategy.AttributeChecker attributeChecker)
The callback to indicate that dirty checking (the dirty attribute determination phase) should be handled by the callingCustomEntityDirtinessStrategyusing the givenCustomEntityDirtinessStrategy.AttributeChecker.- Parameters:
attributeChecker- The delegate usable by the context for determining which attributes are dirty.
-
-