Package org.hibernate.event.spi
Interface EvictEventListener
-
- All Superinterfaces:
Serializable
public interface EvictEventListener extends Serializable
Defines the contract for handling of evict events generated from a session.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonEvict(EvictEvent event)Handle the given evict event.
-
-
-
Method Detail
-
onEvict
void onEvict(EvictEvent event) throws HibernateException
Handle the given evict event.- Parameters:
event- The evict event to be handled.- Throws:
HibernateException
-
-