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

com.atomikos.datasource.xa.ResourceTransactionSuspender 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.datasource.xa;

import com.atomikos.icatch.CompositeTransaction;
import com.atomikos.icatch.SubTxAwareParticipant;
import com.atomikos.logging.Logger;
import com.atomikos.logging.LoggerFactory;

class ResourceTransactionSuspender implements SubTxAwareParticipant {

    private static Logger LOGGER = LoggerFactory.createLogger(ResourceTransactionSuspender.class);
    
    private XAResourceTransaction branch;
    
    ResourceTransactionSuspender(XAResourceTransaction branch) {
        this.branch = branch;
    }
    
    @Override
    public void committed(CompositeTransaction transaction) {
        try {
            branch.suspend();
        } catch (Exception e) {
            LOGGER.logDebug("Unexpected exception while trying to suspend the branch: ", e);
            //ignore: just a courtesy
        }
    }

    @Override
    public void rolledback(CompositeTransaction transaction) {
        try {
            branch.suspend();
        } catch (Exception e) {
            LOGGER.logDebug("Unexpected exception while trying to suspend the branch: ", e);
            //ignore: just a courtesy
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy