Package org.hibernate.event.spi
Interface EvictEventListener
-
- All Known Implementing Classes:
DefaultEvictEventListener
public interface EvictEventListener
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 void
onEvict(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
-
-