Package org.springframework.jms.connection

Examples of org.springframework.jms.connection.TransactionAwareConnectionFactoryProxy


      });

      assertSame(mockSession, ConnectionFactoryUtils.getTransactionalSession(scf, null, false));
      assertSame(mockSession, ConnectionFactoryUtils.getTransactionalSession(scf, scf.createConnection(), false));

      TransactionAwareConnectionFactoryProxy tacf = new TransactionAwareConnectionFactoryProxy(scf);
      Connection tac = tacf.createConnection();
      Session tas = tac.createSession(false, Session.AUTO_ACKNOWLEDGE);
      boolean b = tas.getTransacted();
      tas.close();
      tac.close();
View Full Code Here


      });

      assertSame(session, ConnectionFactoryUtils.getTransactionalSession(scf, null, false));
      assertSame(session, ConnectionFactoryUtils.getTransactionalSession(scf, scf.createConnection(), false));

      TransactionAwareConnectionFactoryProxy tacf = new TransactionAwareConnectionFactoryProxy(scf);
      Connection tac = tacf.createConnection();
      Session tas = tac.createSession(false, Session.AUTO_ACKNOWLEDGE);
      tas.getTransacted();
      tas.close();
      tac.close();
View Full Code Here

TOP

Related Classes of org.springframework.jms.connection.TransactionAwareConnectionFactoryProxy

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.