Class DefaultTransactionManagerFactory

java.lang.Object
org.litebridgedb.orm.tx.DefaultTransactionManagerFactory
All Implemented Interfaces:
TransactionManagerFactory

public final class DefaultTransactionManagerFactory extends Object implements TransactionManagerFactory
A factory for creating instances of DefaultTransactionManager.

This class provides an implementation of the TransactionManagerFactory interface. It creates transaction manager instances bound to a specific DataSource.

The produced DefaultTransactionManager instances are used to manage database transactions within a defined transactional context. This includes managing the lifecycle of transactions (begin, commit, rollback) and coordinating these with the underlying database system.

This class is immutable and thread-safe.

  • Constructor Details

    • DefaultTransactionManagerFactory

      public DefaultTransactionManagerFactory()
  • Method Details