public interface TableTransactionProcessor
Modifier and Type | Method and Description |
---|---|
void |
abortTransaction()
Abort the current pending transaction.
|
void |
finishTransaction()
Finish the current pending transaction.
|
boolean |
inTransaction() |
void |
startTransaction()
Begin a new transaction.
|
boolean inTransaction()
void startTransaction()
void abortTransaction()
Abort the current pending transaction.
This should not be called if there is no current transaction.
IllegalStateException
- If there is no current transactionvoid finishTransaction()
Finish the current pending transaction.
This makes the rows that were part of the transaction eligible to be made visible and durable, but does not in itself make them visible or durable.
This should not be called if there is no current transaction.
IllegalStateException
- If there is no current transaction