Package org.hibernate.event.spi
Interface PostUpdateEventListener
-
- All Superinterfaces:
Serializable
- All Known Subinterfaces:
PostCommitUpdateEventListener
public interface PostUpdateEventListener extends Serializable
Called after updating the datastore
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description voidonPostUpdate(PostUpdateEvent event)booleanrequiresPostCommitHanding(EntityPersister persister)Deprecated.default booleanrequiresPostCommitHandling(EntityPersister persister)Does this listener require that after transaction hooks be registered?
-
-
-
Method Detail
-
onPostUpdate
void onPostUpdate(PostUpdateEvent event)
-
requiresPostCommitHanding
@Deprecated boolean requiresPostCommitHanding(EntityPersister persister)
Deprecated.Does this listener require that after transaction hooks be registered?- Parameters:
persister- The persister for the entity in question.- Returns:
trueif after transaction callbacks should be added.
-
requiresPostCommitHandling
default boolean requiresPostCommitHandling(EntityPersister persister)
Does this listener require that after transaction hooks be registered?- Parameters:
persister- The persister for the entity in question.- Returns:
trueif after transaction callbacks should be added.
-
-