All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.commons.tx.lookup.TransactionManagerLookup Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.commons.tx.lookup;

import jakarta.transaction.TransactionManager;

/**
 * Factory interface, allows Cache or RemoteCache to use different transactional systems.
 * Thread safety: it is possible for the same instance of this class to be used by multiple caches at the same time e.g.
 * when the same instance is passed to multiple configurations.
 * As infinispan supports parallel test startup, it might be possible for multiple threads to invoke the
 * getTransactionManager() method concurrently, so it is highly recommended for instances of this class to be thread safe.
 *
 * @author Bela Ban, Aug 26 2003
 * @since 4.0
 */
public interface TransactionManagerLookup {

   /**
    * Returns a new TransactionManager.
    *
    * @throws Exception if lookup failed
    */
   TransactionManager getTransactionManager() throws Exception;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy