⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 transaction.java

📁 GridSphere 门户 提供一个基于 portlet 的高级开放源代码门户。GridSphere 是在欧盟提供基金的 GridLab 项目下开发的
💻 JAVA
字号:
package org.gridsphere.services.core.persistence;/** * Created by IntelliJ IDEA. * User: czhang * Date: Aug 26, 2004 * Time: 5:02:56 PM * To change this template use Options | File Templates. */public interface Transaction {    /**	 * Flush the associated <tt>Session</tt> and end the unit of work.	 * This method will commit the underlying transaction if and only	 * if the transaction was initiated by this object.	 *	 * @throws PersistenceManagerException	 */	public void commit() throws PersistenceManagerException;	/**	 * Force the underlying transaction to roll back.	 *	 * @throws PersistenceManagerException	 */	public void rollback() throws PersistenceManagerException;	/**	 * Was this transaction rolled back or set to rollback only?	 *	 * @return boolean	 * @throws PersistenceManagerException	 */	public boolean wasRolledBack() throws PersistenceManagerException;	/**	 * Check if this transaction was successfully committed. This method	 * could return <tt>false</tt> even after successful invocation	 * of <tt>commit()</tt>.	 *	 * @return boolean	 * @throws PersistenceManagerException	 */	public boolean wasCommitted() throws PersistenceManagerException;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -