Methods Summary |
---|
public void | begin()Create a new transaction and associate it with the current thread.
|
public void | commit()Complete the transaction associated with the current thread. When this
method completes, the thread is no longer associated with a transaction.
|
public int | getStatus()Obtain the status of the transaction associated with the current thread.
|
public void | rollback()Roll back the transaction associated with the current thread. When this
method completes, the thread is no longer associated with a transaction.
|
public void | setRollbackOnly()Modify the transaction associated with the current thread such that
the only possible outcome of the transaction is to roll back the
transaction.
|
public void | setTransactionTimeout(int seconds)Modify the timeout value that is associated with transactions started
by the current thread with the begin method.
If an application has not called this method, the transaction
service uses some default value for the transaction timeout.
|