Package org.jboss.internal.soa.esb.couriers.tx

Examples of org.jboss.internal.soa.esb.couriers.tx.InVMXAResource


             * is the transaction controller thread!
             */
            final TransactionStrategy txStrategy = TransactionStrategy.getTransactionStrategy(true) ;
            try
            {
                txStrategy.enlistResource(new InVMXAResource(inVMEpr, addedObject, InVMXAResource.Operation.INSERT));
            }
            catch (final TransactionStrategyException tse)
            {
                throw new InVMException("Unexpected error enlisting transaction resource", tse) ;
            }
View Full Code Here


                    LOGGER.debug("Pickup enlisting transactional resource for service " + serviceId) ;
                }
                final TransactionStrategy txStrategy = TransactionStrategy.getTransactionStrategy(true) ;
                try
                {
                    txStrategy.enlistResource(new InVMXAResource(inVMEpr, msgObject, InVMXAResource.Operation.REMOVE)) ;
                }
                catch (final TransactionStrategyException tse)
                {
                    throw new InVMException("Unexpected error enlisting transaction resource", tse) ;
                }
View Full Code Here

             * is the transaction controller thread!
             */
            final TransactionStrategy txStrategy = TransactionStrategy.getTransactionStrategy(true) ;
            try
            {
                txStrategy.enlistResource(new InVMXAResource(inVMEpr, addedObject, InVMXAResource.Operation.INSERT));
            }
            catch (final TransactionStrategyException tse)
            {
                throw new InVMException("Unexpected error enlisting transaction resource", tse) ;
            }
View Full Code Here

                        LOGGER.debug("Pickup enlisting transactional resource for service " + serviceId) ;
                    }
                    final TransactionStrategy txStrategy = TransactionStrategy.getTransactionStrategy(true) ;
                    try
                    {
                        txStrategy.enlistResource(new InVMXAResource(inVMEpr, msgObject, InVMXAResource.Operation.REMOVE)) ;
                    }
                    catch (final TransactionStrategyException tse)
                    {
                        throw new InVMException("Unexpected error enlisting transaction resource", tse) ;
                    }
View Full Code Here

TOP

Related Classes of org.jboss.internal.soa.esb.couriers.tx.InVMXAResource

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.