All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.atomikos.icatch.jta.template.TransactionTemplate Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
/**
 * Copyright (C) 2000-2020 Atomikos 
 *
 * LICENSE CONDITIONS
 *
 * See http://www.atomikos.com/Main/WhichLicenseApplies for details.
 */

package com.atomikos.icatch.jta.template;

import java.util.concurrent.Callable;

import javax.transaction.Transaction;
import javax.transaction.TransactionManager;

import com.atomikos.icatch.jta.UserTransactionManager;

 /**
  * Template (builder-style) logic for light-weight transaction demarcation.
  * 
  * Example usage:
  * 
  * 
  * {@code
  *     TransactionTemplate template = new TransactionTemplate();
  *     template.withTimeout(5).required().execute(() -> {
  *         //your transactional code as a lambda expression
  *     });
  *  }
  * 
* * Instead of a lambda expression, you can also supply a Callable instance. */ public class TransactionTemplate { private int timeout; //0 means: use default protected TransactionManager utm; private boolean newTransactionStartedHere; private Transaction existingTransaction; public TransactionTemplate() { this(new UserTransactionManager(), 0); } TransactionTemplate(TransactionManager utm, int timeout) { this.timeout = timeout; this.utm = utm; } public TransactionTemplate withTimeout(int timeout) { this.timeout = timeout; return this; } /** * * @return An instance that executes work with REQUIRED semantics. * *
    *
  • For new transactions: any exception will lead to rollback, no exception means commit.
  • *
  • For existing transactions: any exception will mark the transaction as rollbackOnly.
  • *
* */ public TransactionTemplate required() { return new RequiredTemplate(utm, timeout); } /** * @return An instance that executes work in a new (nested) transaction and commits if there are no exceptions. * * Any exception will lead to rollback of the (nested) transaction. * */ public TransactionTemplate nested() { return new NestedTemplate(utm, timeout); } protected void beginTransaction() throws Exception { utm.setTransactionTimeout(timeout); utm.begin(); newTransactionStartedHere = true; } protected void commitTransactionIfStartedHere() throws Exception { if (newTransactionStartedHere) { utm.commit(); } } protected void forceRollback(Throwable e) throws Exception { if (newTransactionStartedHere) { utm.rollback(); } else { utm.setRollbackOnly(); } } protected void beginTransactionIfNoneExists() throws Exception { if (utm.getTransaction() == null) { beginTransaction(); } else { newTransactionStartedHere = false; } } protected void resumeExistingTransaction() throws Exception { if (existingTransaction != null) { utm.resume(existingTransaction); } } protected void suspendExistingTransaction() throws Exception { existingTransaction = utm.suspend(); } /** * Defaults to required() strategy. * * @param work * @return * @throws Exception */ public T execute(Callable work) throws Exception { return new RequiredTemplate(utm, timeout).execute(work); } /** * * @return An instance that executes work with REQUIRES_NEW semantics. * * Any exception will lead to rollback, no exception means commit. */ public TransactionTemplate requiresNew() { return new RequiresNewTemplate(utm, timeout); } /** * * @return An instance that executes work with MANDATORY semantics. * * Any exception will lead to rollbackOnly status of the existing transaction. */ public TransactionTemplate mandatory() { return new MandatoryTemplate(utm, timeout); } /** * * @return An instance that executes work with NEVER semantics. */ public TransactionTemplate never() { return new NeverTemplate(utm, timeout); } /** * * @return An instance that executes work with SUPPORTS semantics. */ public TransactionTemplate supports() { return new SupportsTemplate(utm, timeout); } /** * * @return An instance that executes work with NOT_SUPPORTED semantics. */ public TransactionTemplate notSupported() { return new NotSupportedTemplate(utm, timeout); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy