Package io.jmix.data.listener
Interface AfterUpdateEntityListener<T>
- All Known Implementing Classes:
ImapMailboxListener
public interface AfterUpdateEntityListener<T>
Defines the contract for handling of entities after they have been updated in DB.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onAfterUpdate
(T entity) Executes after the object has been updated in DB.
-
Method Details
-
onAfterUpdate
Executes after the object has been updated in DB.Modification of the entity state or using
EntityManager
is impossible here.- Parameters:
entity
- updated entity
-