Package io.micronaut.transaction.support
Interface ResourceTransactionManager<R,T>
-
- Type Parameters:
R
- The resource typeT
- The connection type
- All Superinterfaces:
SynchronousTransactionManager<T>
,TransactionManager
,TransactionOperations<T>
- All Known Implementing Classes:
DataSourceTransactionManager
,HibernateTransactionManager
public interface ResourceTransactionManager<R,T> extends SynchronousTransactionManager<T>
Extension of theSynchronousTransactionManager
interface, indicating a native resource transaction manager, operating on a single target resource. Such transaction managers differ from JTA transaction managers in that they do not use XA transaction enlistment for an open number of resources but rather focus on leveraging the native power and simplicity of a single target resource.This interface is mainly used for abstract introspection of a transaction manager, giving clients a hint on what kind of transaction manager they have been given and on what concrete resource the transaction manager is operating on.
- Since:
- 2.0.4
- Author:
- Juergen Hoeller, graemerocher
- See Also:
TransactionSynchronizationManager
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
getResourceFactory()
Return the resource factory that this transaction manager operates on, e.g.-
Methods inherited from interface io.micronaut.transaction.SynchronousTransactionManager
commit, getTransaction, rollback
-
Methods inherited from interface io.micronaut.transaction.TransactionOperations
execute, executeRead, executeWrite, getConnection, hasConnection
-
-
-
-
Method Detail
-
getResourceFactory
R getResourceFactory()
Return the resource factory that this transaction manager operates on, e.g. a JDBC DataSource or a JMS ConnectionFactory.This target resource factory is usually used as resource key for
TransactionSynchronizationManager
's resource bindings per thread.- Returns:
- the target resource factory (never
null
) - See Also:
TransactionSynchronizationManager.bindResource(java.lang.Object, java.lang.Object)
,TransactionSynchronizationManager.getResource(java.lang.Object)
-
-