Package org.hibernate.transaction.synchronization

Examples of org.hibernate.transaction.synchronization.HibernateSynchronizationImpl


          else {
            if ( hibernateTransaction == null ) {
              hibernateTransaction = owner.getFactory().getSettings().getTransactionFactory().createTransaction( this, owner );
            }
            tx.registerSynchronization(
                new HibernateSynchronizationImpl( getJtaSynchronizationCallbackCoordinator( tx ) )
            );
//            tx.registerSynchronization( new CacheSynchronization(owner, this, tx, hibernateTransaction) );
            isTransactionCallbackRegistered = true;
            log.debug("successfully registered Synchronization");
            return true;
View Full Code Here

TOP

Related Classes of org.hibernate.transaction.synchronization.HibernateSynchronizationImpl

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.