Uses of Interface
org.hibernate.Transaction
-
Packages that use Transaction Package Description org.hibernate org.hibernate.engine.spi org.hibernate.engine.transaction.spi -
-
Uses of Transaction in org.hibernate
Methods in org.hibernate that return Transaction Modifier and Type Method Description Transaction
SharedSessionContract. beginTransaction()
Begin a unit of work and return the associatedTransaction
object.Transaction
SharedSessionContract. getTransaction()
Get theTransaction
instance associated with this session.Methods in org.hibernate with parameters of type Transaction Modifier and Type Method Description void
EmptyInterceptor. afterTransactionBegin(Transaction tx)
void
Interceptor. afterTransactionBegin(Transaction tx)
Called when a Hibernate transaction is begun via the Hibernate Transaction API.void
EmptyInterceptor. afterTransactionCompletion(Transaction tx)
void
Interceptor. afterTransactionCompletion(Transaction tx)
Called after a transaction is committed or rolled back.void
EmptyInterceptor. beforeTransactionCompletion(Transaction tx)
void
Interceptor. beforeTransactionCompletion(Transaction tx)
Called before a transaction is committed (but not before rollback). -
Uses of Transaction in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return Transaction Modifier and Type Method Description Transaction
SessionDelegatorBaseImpl. accessTransaction()
Transaction
SharedSessionContractImplementor. accessTransaction()
Provides access to the underlying transaction or creates a new transaction if one does not already exist or is active.Transaction
SessionDelegatorBaseImpl. beginTransaction()
Transaction
SessionLazyDelegator. beginTransaction()
Transaction
SessionDelegatorBaseImpl. getTransaction()
Transaction
SessionLazyDelegator. getTransaction()
-
Uses of Transaction in org.hibernate.engine.transaction.spi
Subinterfaces of Transaction in org.hibernate.engine.transaction.spi Modifier and Type Interface Description interface
TransactionImplementor
-