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

IsolatedWork (Hibernate API Documentation) - Hibernate 3.2.3 正式版 API 英文文档


org.hibernate.engine.transaction
Interface IsolatedWork


public interface IsolatedWork

Represents work that needs to be performed in a manner which isolates it from any current application unit of work transaction.

Author:
Steve Ebersole

Method Summary
 void doWork(Connection connection)
          Perform the actual work to be done.
 

Method Detail

doWork

public void doWork(Connection connection)
            throws HibernateException
Perform the actual work to be done.

Parameters:
connection - The JDBC connection to use.
Throws:
HibernateException