Package ghidra.framework.model
Interface Transaction
public interface Transaction
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
static final int
static final int
static final int
-
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.int
boolean
Returns true if this fully committed transaction has a corresponding database transaction/checkpoint.
-
Field Details
-
NOT_DONE
static final int NOT_DONE- See Also:
-
COMMITTED
static final int COMMITTED- See Also:
-
ABORTED
static final int ABORTED- See Also:
-
NOT_DONE_BUT_ABORTED
static final int NOT_DONE_BUT_ABORTED- See Also:
-
-
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
int getStatus() -
hasCommittedDBTransaction
boolean hasCommittedDBTransaction()Returns true if this fully committed transaction has a corresponding database transaction/checkpoint.
-