Uses of Interface
org.springframework.transaction.TransactionExecution
Package
Description
Spring's core transaction management APIs (independent of any specific transaction
management system); an exception hierarchy for Spring's transaction infrastructure;
and transaction manager, definition, and status interfaces.
Support classes for reactive transaction management.
Support classes for the org.springframework.transaction package.
-
Uses of TransactionExecution in org.springframework.transaction
Modifier and TypeInterfaceDescriptioninterface
Representation of an ongoingReactiveTransactionManager
transaction.interface
Representation of an ongoingPlatformTransactionManager
transaction.Modifier and TypeMethodDescriptiondefault void
TransactionExecutionListener.afterBegin
(TransactionExecution transaction, Throwable beginFailure) Callback after the transaction begin step.default void
TransactionExecutionListener.afterCommit
(TransactionExecution transaction, Throwable commitFailure) Callback after the transaction commit step.default void
TransactionExecutionListener.afterRollback
(TransactionExecution transaction, Throwable rollbackFailure) Callback after the transaction rollback step.default void
TransactionExecutionListener.beforeBegin
(TransactionExecution transaction) Callback before the transaction begin step.default void
TransactionExecutionListener.beforeCommit
(TransactionExecution transaction) Callback before the transaction commit step.default void
TransactionExecutionListener.beforeRollback
(TransactionExecution transaction) Callback before the transaction rollback step. -
Uses of TransactionExecution in org.springframework.transaction.reactive
Modifier and TypeClassDescriptionclass
Default implementation of theReactiveTransaction
interface, used byAbstractReactiveTransactionManager
. -
Uses of TransactionExecution in org.springframework.transaction.support
Modifier and TypeClassDescriptionclass
Abstract base implementation of theTransactionStatus
interface.class
Default implementation of theTransactionStatus
interface, used byAbstractPlatformTransactionManager
.class
A simpleTransactionStatus
implementation.