Uses of Class
org.apache.commons.dbcp.managed.TransactionRegistry
-
Packages that use TransactionRegistry Package Description org.apache.commons.dbcp.managed This package provides support for pooling of ManagedConnections. -
-
Uses of TransactionRegistry in org.apache.commons.dbcp.managed
Fields in org.apache.commons.dbcp.managed declared as TransactionRegistry Modifier and Type Field Description private TransactionRegistry
BasicManagedDataSource. transactionRegistry
Transaction Registryprotected TransactionRegistry
DataSourceXAConnectionFactory. transactionRegistry
protected TransactionRegistry
LocalXAConnectionFactory. transactionRegistry
private TransactionRegistry
ManagedConnection. transactionRegistry
private TransactionRegistry
ManagedDataSource. transactionRegistry
private TransactionRegistry
PoolableManagedConnection. transactionRegistry
private TransactionRegistry
PoolableManagedConnectionFactory. transactionRegistry
Transaction registry associated with connections created by this factoryprivate TransactionRegistry
TransactionContext. transactionRegistry
Methods in org.apache.commons.dbcp.managed that return TransactionRegistry Modifier and Type Method Description protected TransactionRegistry
BasicManagedDataSource. getTransactionRegistry()
Gets the transaction registry.TransactionRegistry
DataSourceXAConnectionFactory. getTransactionRegistry()
TransactionRegistry
LocalXAConnectionFactory. getTransactionRegistry()
TransactionRegistry
XAConnectionFactory. getTransactionRegistry()
Gets the TransactionRegistry for this connection factory which contains a the XAResource for every connection created by this factory.Methods in org.apache.commons.dbcp.managed with parameters of type TransactionRegistry Modifier and Type Method Description void
ManagedDataSource. setTransactionRegistry(TransactionRegistry transactionRegistry)
Sets the transaction registry from the XAConnectionFactory used to create the pool.Constructors in org.apache.commons.dbcp.managed with parameters of type TransactionRegistry Constructor Description ManagedConnection(org.apache.commons.pool.ObjectPool pool, TransactionRegistry transactionRegistry, boolean accessToUnderlyingConnectionAllowed)
ManagedDataSource(org.apache.commons.pool.ObjectPool pool, TransactionRegistry transactionRegistry)
Creates a ManagedDataSource which obtains connections from the specified pool and manages them using the specified transaction registry.PoolableManagedConnection(TransactionRegistry transactionRegistry, java.sql.Connection conn, org.apache.commons.pool.ObjectPool pool)
Create a PoolableManagedConnection.PoolableManagedConnection(TransactionRegistry transactionRegistry, java.sql.Connection conn, org.apache.commons.pool.ObjectPool pool, AbandonedConfig config)
Create a PoolableManagedConnection.TransactionContext(TransactionRegistry transactionRegistry, javax.transaction.Transaction transaction)
Creates a TransactionContext for the specified Transaction and TransactionRegistry.
-