类 PostDeleteEventListenerStandardImpl
- java.lang.Object
-
- org.hibernate.event.internal.PostDeleteEventListenerStandardImpl
-
public class PostDeleteEventListenerStandardImpl extends Object implements PostDeleteEventListener, CallbackRegistryConsumer
The standard PostDeleteEventListener implementation- 作者:
- Kabir Khan, Steve Ebersole
- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 构造器 说明 PostDeleteEventListenerStandardImpl()
-
方法概要
所有方法 实例方法 具体方法 默认方法 修饰符和类型 方法 说明 voidinjectCallbackRegistry(CallbackRegistry callbackRegistry)Injection of the CallbackRegistryvoidonPostDelete(PostDeleteEvent event)booleanrequiresPostCommitHanding(EntityPersister persister)default booleanrequiresPostCommitHandling(EntityPersister persister)Does this listener require that after transaction hooks be registered?
-
-
-
方法详细资料
-
injectCallbackRegistry
public void injectCallbackRegistry(CallbackRegistry callbackRegistry)
从接口复制的说明:CallbackRegistryConsumerInjection of the CallbackRegistry- 指定者:
injectCallbackRegistry在接口中CallbackRegistryConsumer- 参数:
callbackRegistry- The CallbackRegistry
-
onPostDelete
public void onPostDelete(PostDeleteEvent event)
- 指定者:
onPostDelete在接口中PostDeleteEventListener
-
requiresPostCommitHanding
public boolean requiresPostCommitHanding(EntityPersister persister)
-
requiresPostCommitHandling
public default boolean requiresPostCommitHandling(EntityPersister persister)
Does this listener require that after transaction hooks be registered?- 参数:
persister- The persister for the entity in question.- 返回:
trueif after transaction callbacks should be added.
-
-