Class GenericReactiveTransaction
- All Implemented Interfaces:
- ReactiveTransaction,- TransactionExecution
ReactiveTransaction interface,
 used by AbstractReactiveTransactionManager. Based on the concept
 of an underlying "transaction object".
 Holds all status information that AbstractReactiveTransactionManager
 needs internally, including a generic transaction object determined by the
 concrete transaction manager implementation.
 
NOTE: This is not intended for use with other ReactiveTransactionManager implementations, in particular not for mock transaction managers in testing environments.
- Since:
- 5.2
- Author:
- Mark Paluch, Juergen Hoeller
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionGenericReactiveTransaction(Object transaction, boolean newTransaction, boolean newSynchronization, boolean readOnly, boolean debug, Object suspendedResources) Deprecated, for removal: This API element is subject to removal in a future version.GenericReactiveTransaction(String transactionName, Object transaction, boolean newTransaction, boolean newSynchronization, boolean nested, boolean readOnly, boolean debug, Object suspendedResources) Create a newDefaultReactiveTransactionStatusinstance.
- 
Method SummaryModifier and TypeMethodDescriptionReturn the holder for resources that have been suspended for this transaction, if any.Return the underlying transaction object.Return the defined name of the transaction (possibly an empty String).booleanReturn whether there is an actual transaction active: this is meant to cover a new transaction as well as participation in an existing transaction, only returningfalsewhen not running in an actual transaction at all.booleanReturn whether this transaction is completed, that is, whether it has already been committed or rolled back.booleanisDebug()Return whether the progress of this transaction is debugged.booleanisNested()Return if this transaction executes in a nested fashion within another.booleanReturn if a new transaction synchronization has been opened for this transaction.booleanReturn whether the transaction manager considers the present transaction as new; otherwise participating in an existing transaction, or potentially not running in an actual transaction in the first place.booleanReturn if this transaction is defined as read-only transaction.booleanDetermine the rollback-only flag via checking this ReactiveTransactionStatus.voidMark this transaction as completed, that is, committed or rolled back.voidSet the transaction rollback-only.
- 
Constructor Details- 
GenericReactiveTransactionpublic GenericReactiveTransaction(@Nullable String transactionName, @Nullable Object transaction, boolean newTransaction, boolean newSynchronization, boolean nested, boolean readOnly, boolean debug, @Nullable Object suspendedResources) Create a newDefaultReactiveTransactionStatusinstance.- Parameters:
- transactionName- the defined name of the transaction
- transaction- underlying transaction object that can hold state for the internal transaction implementation
- newTransaction- if the transaction is new, otherwise participating in an existing transaction
- newSynchronization- if a new transaction synchronization has been opened for the given transaction
- readOnly- whether the transaction is marked as read-only
- debug- should debug logging be enabled for the handling of this transaction? Caching it in here can prevent repeated calls to ask the logging system whether debug logging should be enabled.
- suspendedResources- a holder for resources that have been suspended for this transaction, if any
- Since:
- 6.1
 
- 
GenericReactiveTransaction@Deprecated(since="6.1", forRemoval=true) public GenericReactiveTransaction(@Nullable Object transaction, boolean newTransaction, boolean newSynchronization, boolean readOnly, boolean debug, @Nullable Object suspendedResources) Deprecated, for removal: This API element is subject to removal in a future version.
 
- 
- 
Method Details- 
getTransactionNameDescription copied from interface:TransactionExecutionReturn the defined name of the transaction (possibly an empty String).In case of Spring's declarative transactions, the exposed name will be the fully-qualified class name + "." + method name(by default).The default implementation returns an empty String. - Specified by:
- getTransactionNamein interface- TransactionExecution
- See Also:
 
- 
getTransactionReturn the underlying transaction object.- Throws:
- IllegalStateException- if no transaction is active
 
- 
hasTransactionpublic boolean hasTransaction()Description copied from interface:TransactionExecutionReturn whether there is an actual transaction active: this is meant to cover a new transaction as well as participation in an existing transaction, only returningfalsewhen not running in an actual transaction at all.The default implementation returns true.- Specified by:
- hasTransactionin interface- TransactionExecution
- See Also:
 
- 
isNewTransactionpublic boolean isNewTransaction()Description copied from interface:TransactionExecutionReturn whether the transaction manager considers the present transaction as new; otherwise participating in an existing transaction, or potentially not running in an actual transaction in the first place.This is primarily here for transaction manager state handling. Prefer the use of TransactionExecution.hasTransaction()for application purposes since this is usually semantically appropriate.The "new" status can be transaction manager specific, for example, returning truefor an actual nested transaction but potentiallyfalsefor a savepoint-based nested transaction scope if the savepoint management is explicitly exposed (such as onTransactionStatus). A combined check for any kind of nested execution is provided byTransactionExecution.isNested().The default implementation returns true.- Specified by:
- isNewTransactionin interface- TransactionExecution
- See Also:
 
- 
isNewSynchronizationpublic boolean isNewSynchronization()Return if a new transaction synchronization has been opened for this transaction.
- 
isNestedpublic boolean isNested()Description copied from interface:TransactionExecutionReturn if this transaction executes in a nested fashion within another.The default implementation returns false.- Specified by:
- isNestedin interface- TransactionExecution
- See Also:
 
- 
isReadOnlypublic boolean isReadOnly()Description copied from interface:TransactionExecutionReturn if this transaction is defined as read-only transaction.The default implementation returns false.- Specified by:
- isReadOnlyin interface- TransactionExecution
- See Also:
 
- 
isDebugpublic boolean isDebug()Return whether the progress of this transaction is debugged. This is used byAbstractReactiveTransactionManageras an optimization, to prevent repeated calls tologger.isDebugEnabled(). Not really intended for client code.
- 
getSuspendedResourcesReturn the holder for resources that have been suspended for this transaction, if any.
- 
setRollbackOnlypublic void setRollbackOnly()Description copied from interface:TransactionExecutionSet the transaction rollback-only. This instructs the transaction manager that the only possible outcome of the transaction may be a rollback, as alternative to throwing an exception which would in turn trigger a rollback.The default implementation throws an UnsupportedOperationException. - Specified by:
- setRollbackOnlyin interface- TransactionExecution
- See Also:
 
- 
isRollbackOnlypublic boolean isRollbackOnly()Determine the rollback-only flag via checking this ReactiveTransactionStatus.Will only return "true" if the application called setRollbackOnlyon this TransactionStatus object.- Specified by:
- isRollbackOnlyin interface- TransactionExecution
- See Also:
 
- 
setCompletedpublic void setCompleted()Mark this transaction as completed, that is, committed or rolled back.
- 
isCompletedpublic boolean isCompleted()Description copied from interface:TransactionExecutionReturn whether this transaction is completed, that is, whether it has already been committed or rolled back.The default implementation returns false.- Specified by:
- isCompletedin interface- TransactionExecution
 
 
-