All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.engine.transaction.spi.TransactionImplementor Maven / Gradle / Ivy

/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.engine.transaction.spi;

import org.hibernate.HibernateException;
import org.hibernate.Transaction;
import org.hibernate.resource.transaction.spi.TransactionStatus;

/**
 * @author Steve Ebersole
 */
public interface TransactionImplementor extends Transaction {
	/**
	 * Invalidates a transaction handle.   This might happen, e.g., when:
    *
  • The transaction is committed
  • *
  • The transaction is rolled-back
  • *
  • The session that owns the transaction is closed
  • *
* * @deprecated (since 5.2) as part of effort to consolidate support for JPA and Hibernate SessionFactory, Session, etc * natively, support for local Transaction delegates to remain "valid" after they are committed or rolled-back (and to a * degree after the owning Session is closed) to more closely comply with the JPA spec natively in terms * of allowing that extended access after Session is closed. Hibernate impls have all been changed to no-op here. */ @Deprecated default void invalidate() { // no-op : see @deprecated note } /** * Indicate whether a resource transaction is in progress. * * @param isMarkedRollbackConsideredActive whether to consider {@link TransactionStatus#MARKED_ROLLBACK} as active. * * @return boolean indicating whether transaction is in progress * @throws HibernateException if an unexpected error condition is encountered. */ boolean isActive(boolean isMarkedRollbackConsideredActive); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy