Interface TransactionInfo
public interface TransactionInfo
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionReturns the description of this transaction.longgetID()Returns the list of open sub-transactions that are contained inside this transaction.Get the status of the corresponding transaction.booleanDetermine if the corresponding transaction, and all of its sub-transactions, has been committed to the underlying database.
-
Method Details
-
getID
long getID() -
getDescription
String getDescription()Returns the description of this transaction.- Returns:
- the description of this transaction
-
getOpenSubTransactions
-
getStatus
-
hasCommittedDBTransaction
boolean hasCommittedDBTransaction()Determine if the corresponding transaction, and all of its sub-transactions, has been committed to the underlying database.- Returns:
- true if the corresponding transaction has been committed, else false.
-