Package ghidra.framework.model
Interface TransactionInfo
public interface TransactionInfo
- 
Nested Class SummaryNested Classes
- 
Method SummaryModifier 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- 
getIDlong getID()
- 
getDescriptionString getDescription()Returns the description of this transaction.- Returns:
- the description of this transaction
 
- 
getOpenSubTransactionsReturns the list of open sub-transactions that are contained inside this transaction.- Returns:
- the list of open sub-transactions
 
- 
getStatusTransactionInfo.Status getStatus()Get the status of the corresponding transaction.- Returns:
- status
 
- 
hasCommittedDBTransactionboolean 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.
 
 
-