站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Hibernate 3.2.4 正式版 API 英文文档

EvictEventListener (Hibernate API Documentation) - Hibernate 3.2.4 正式版 API 英文文档


org.hibernate.event
Interface EvictEventListener

All Superinterfaces:
Serializable
All Known Implementing Classes:
DefaultEvictEventListener

public interface EvictEventListener
extends Serializable

Defines the contract for handling of evict events generated from a session.

Author:
Steve Ebersole

Method Summary
 void onEvict(EvictEvent event)
          Handle the given evict event.
 

Method Detail

onEvict

public void onEvict(EvictEvent event)
             throws HibernateException
Handle the given evict event.

Parameters:
event - The evict event to be handled.
Throws:
HibernateException