Interface PreUpdateEventListener<T>
- Type Parameters:
T
- The entity type
- All Superinterfaces:
EntityEventListener<T>
,EventListener
,io.micronaut.core.order.Ordered
Functional version or
PreUpdate
event handlers.- Since:
- 2.3.0
- Author:
- graemerocher
-
Field Summary
Fields inherited from interface io.micronaut.data.event.EntityEventListener
NOOP
Fields inherited from interface io.micronaut.core.order.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
Method Summary
Modifier and TypeMethodDescriptiondefault boolean
preUpdate
(@NonNull EntityEventContext<T> context) A pre-update hook.boolean
A pre-update hook.default boolean
supports
(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, postUpdate, prePersist, preQuery, preRemove
Methods inherited from interface io.micronaut.core.order.Ordered
getOrder
-
Method Details
-
preUpdate
A pre-update hook. Implementors can return false to evict the operation.- Parameters:
entity
- The entity- Returns:
- A boolean value indicating whether to proceed with the operation.
-
preUpdate
Description copied from interface:EntityEventListener
A pre-update hook. Implementors can return false to evict the operation.- Specified by:
preUpdate
in interfaceEntityEventListener<T>
- Parameters:
context
- The context object- Returns:
- A boolean value indicating whether to proceed with the operation.
-
supports
Description copied from interface:EntityEventListener
Allows including or excluding a listener for a specific entity.- Specified by:
supports
in interfaceEntityEventListener<T>
- Parameters:
entity
- The entityeventType
- The event type- Returns:
- True if it is supported
-