public interface Transaction
Session
and is usually initiated by a call to
SharedSessionContract.beginTransaction()
. A single session might span multiple transactions since
the notion of a session (a conversation between the application and the datastore) is of coarser granularity than
the notion of a transaction. However, it is intended that there be at most one uncommitted transaction associated
with a particular Session
at any time.
Implementers are not intended to be thread-safe.Modifier and Type | Method and Description |
---|---|
void |
begin()
Begin this transaction.
|
void |
commit()
Commit this transaction.
|
TransactionStatus |
getStatus()
Get the current local status of this transaction.
|
int |
getTimeout()
Retrieve the transaction timeout set for this transaction.
|
void |
markRollbackOnly()
Make a best effort to mark the underlying transaction for rollback only.
|
void |
registerSynchronization(Synchronization synchronization)
Register a user synchronization callback for this transaction.
|
void |
rollback()
Rollback this transaction.
|
void |
setTimeout(int seconds)
Set the transaction timeout for any transaction started by a subsequent call to
begin() on this instance. |
void begin()
commit()
or rollback()
will error.HibernateException
- Indicates a problem beginning the transaction.void commit()
FlushMode.MANUAL
FlushMode.
HibernateException
- Indicates a problem committing the transaction.void rollback()
HibernateException
- Indicates a problem rolling back the transaction.TransactionStatus getStatus()
void registerSynchronization(Synchronization synchronization) throws HibernateException
synchronization
- The Synchronization callback to register.HibernateException
- Indicates a problem registering the synchronization.void setTimeout(int seconds)
begin()
on this instance.seconds
- The number of seconds before a timeout.int getTimeout()
void markRollbackOnly()
Copyright © 2017 JBoss by Red Hat. All rights reserved.