java.lang.Object
org.jooq.impl.NoTransactionProvider
- All Implemented Interfaces:
- TransactionProvider
An "empty" implementation that is never transactional.
- Author:
- Lukas Eder
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal voidbegin(TransactionContext ctx) Begin a new transaction.final voidcommit(TransactionContext ctx) Commit a transaction.final voidRollback a transaction.
- 
Constructor Details- 
NoTransactionProviderpublic NoTransactionProvider()
 
- 
- 
Method Details- 
beginDescription copied from interface:TransactionProviderBegin a new transaction.This method begins a new transaction with a Configurationscoped for this transaction. The resultingTransactionobject may be used by implementors to identify the transaction whenTransactionProvider.commit(TransactionContext)orTransactionProvider.rollback(TransactionContext)is called.- Specified by:
- beginin interface- TransactionProvider
- Parameters:
- ctx- the configuration scoped to this transaction and its nested transactions.
 
- 
commitDescription copied from interface:TransactionProviderCommit a transaction.- Specified by:
- commitin interface- TransactionProvider
- Parameters:
- ctx- the configuration scoped to this transaction and its nested transactions.
 
- 
rollbackDescription copied from interface:TransactionProviderRollback a transaction.- Specified by:
- rollbackin interface- TransactionProvider
- Parameters:
- ctx- the configuration scoped to this transaction and its nested transactions.
 
 
-