Package ghidra.framework.model
Interface TransactionInfo
public interface TransactionInfo
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the description of this transaction.long
getID()
Returns the list of open sub-transactions that are contained inside this transaction.Get the status of the corresponding transaction.boolean
Determine if the corresponding transaction, and all of its sub-transactions, has been comitted 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
Returns the list of open sub-transactions that are contained inside this transaction.- Returns:
- the list of open sub-transactions
-
getStatus
TransactionInfo.Status getStatus()Get the status of the corresponding transaction.- Returns:
- status
-
hasCommittedDBTransaction
boolean hasCommittedDBTransaction()Determine if the corresponding transaction, and all of its sub-transactions, has been comitted to the underlying database.- Returns:
- true if the corresponding transaction has been comitted, else false.
-