Interface PostUpdateEventListener<T>
- Type Parameters:
T- The entity type
- All Superinterfaces:
EntityEventListener<T>,EventListener,io.micronaut.core.order.Ordered
Functional version or
PostUpdate event handlers.- Since:
- 2.3.0
-
Field Summary
Fields inherited from interface io.micronaut.data.event.EntityEventListener
NOOPFields inherited from interface io.micronaut.core.order.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE -
Method Summary
Modifier and TypeMethodDescriptiondefault voidpostUpdate(@NonNull EntityEventContext<T> context) A post-update hook.voidpostUpdate(T entity) A post-update hook.default booleansupports(RuntimePersistentEntity<T> entity, Class<? extends Annotation> eventType) Allows including or excluding a listener for a specific entity.Methods inherited from interface io.micronaut.data.event.EntityEventListener
postLoad, postPersist, postRemove, prePersist, preQuery, preRemove, preUpdateMethods inherited from interface io.micronaut.core.order.Ordered
getOrder
-
Method Details
-
postUpdate
A post-update hook. Implementors can return false to evict the operation.- Parameters:
entity- The entity
-
postUpdate
Description copied from interface:EntityEventListenerA post-update hook. Executed once the object has been updated.- Specified by:
postUpdatein interfaceEntityEventListener<T>- Parameters:
context- The context object
-
supports
Description copied from interface:EntityEventListenerAllows including or excluding a listener for a specific entity.- Specified by:
supportsin interfaceEntityEventListener<T>- Parameters:
entity- The entityeventType- The event type- Returns:
- True if it is supported
-