Examples of BitronixMultiSystemException


Examples of bitronix.tm.internal.BitronixMultiSystemException

        }
        LocalVisitor xaResourceHolderStateVisitor = new LocalVisitor();
        resourceHolder.acceptVisitorForXAResourceHolderStates(resourceManager.getGtrid(), xaResourceHolderStateVisitor);

        if (!xaResourceHolderStateVisitor.exceptions.isEmpty()) {
            BitronixMultiSystemException multiSystemException = new BitronixMultiSystemException("error delisting resource", xaResourceHolderStateVisitor.exceptions, xaResourceHolderStateVisitor.resourceStates);
            if (!multiSystemException.isUnilateralRollback()) {
                throw multiSystemException;
            } else {
                if (log.isDebugEnabled()) { log.debug("unilateral rollback of resource " + resourceHolder, multiSystemException); }
            }
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.