Package org.apache.aries.transaction.jms.internal

Examples of org.apache.aries.transaction.jms.internal.RecoverableConnectionPool


    protected ConnectionPool createConnectionPool(Connection connection) throws JMSException {
      if (!(connection instanceof XAConnection)) {
        throw new JMSException("Require an instance of javax.jms.XAConnection for creating the ConnectionPool");
      }
        return new RecoverableConnectionPool((XAConnection)connection, getPoolFactory(), getTransactionManager(), getName());
    }
View Full Code Here

TOP

Related Classes of org.apache.aries.transaction.jms.internal.RecoverableConnectionPool

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.