Package org.mule.util.queue

Examples of org.mule.util.queue.PersistentXaTransactionContext


    public void rollbackDandlingTransaction(Xid xid) throws XAException
    {
        try
        {
            logger.info("Rollbacking danling tx with id " + xid);
            new PersistentXaTransactionContext(xaTxQueueTransactionJournal, queueProvider, xid).doRollback();
        }
        catch (ResourceManagerException e)
        {
            logger.warn(e.getMessage());
            if (logger.isDebugEnabled())
View Full Code Here


    public void commitDandlingTransaction(Xid xid, boolean onePhase) throws XAException
    {
        try
        {
            logger.info("Commiting danling tx with id " + xid);
            new PersistentXaTransactionContext(xaTxQueueTransactionJournal, queueProvider, xid).doCommit();
        }
        catch (ResourceManagerException e)
        {
            logger.warn(e.getMessage());
            if (logger.isDebugEnabled())
View Full Code Here

TOP

Related Classes of org.mule.util.queue.PersistentXaTransactionContext

Copyright © 2018 www.massapicom. 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.