#808 - ENH: Add Transaction commitAndContinue() ...

This commit is contained in:
Robin Bygrave
2016-08-05 10:39:17 +12:00
parent 3344f0ddb0
commit 16be213faf
6 changed files with 280 additions and 14 deletions
@@ -32,6 +32,11 @@ public class ScopedTransaction implements SpiTransaction {
this.transaction = scopeTrans.getTransaction();
}
@Override
public void commitAndContinue() throws RollbackException {
transaction.commitAndContinue();
}
@Override
public void commit() throws RollbackException {
scopeTrans.commitTransaction();