Class ReactiveResourceSynchronization<O,K> 
- Type Parameters:
- O- the resource holder type
- K- the resource key type
- All Implemented Interfaces:
- TransactionSynchronization
TransactionSynchronization implementation that manages a
 resource object bound through TransactionSynchronizationManager.- Since:
- 5.2
- Author:
- Mark Paluch, Juergen Hoeller
- 
Field SummaryFields inherited from interface org.springframework.transaction.reactive.TransactionSynchronizationSTATUS_COMMITTED, STATUS_ROLLED_BACK, STATUS_UNKNOWN
- 
Constructor SummaryConstructorsConstructorDescriptionReactiveResourceSynchronization(O resourceObject, K resourceKey, TransactionSynchronizationManager synchronizationManager) Create a new ReactiveResourceSynchronization for the given holder.
- 
Method SummaryModifier and TypeMethodDescriptionreactor.core.publisher.Mono<Void>Invoked after transaction commit.reactor.core.publisher.Mono<Void>afterCompletion(int status) Invoked after transaction commit/rollback.reactor.core.publisher.Mono<Void>beforeCommit(boolean readOnly) Invoked before transaction commit (before "beforeCompletion").reactor.core.publisher.Mono<Void>Invoked before transaction commit/rollback.protected reactor.core.publisher.Mono<Void>cleanupResource(O resourceHolder, K resourceKey, boolean committed) Perform a cleanup on the given resource (which is left bound to the thread).protected reactor.core.publisher.Mono<Void>processResourceAfterCommit(O resourceHolder) After-commit callback for the given resource holder.protected reactor.core.publisher.Mono<Void>releaseResource(O resourceHolder, K resourceKey) Release the given resource (after it has been unbound from the thread).reactor.core.publisher.Mono<Void>resume()Resume this synchronization.protected booleanshouldReleaseAfterCompletion(O resourceHolder) Return whether this holder's resource should be released after transaction completion (true).protected booleanReturn whether this holder's resource should be released before transaction completion (true) or rather after transaction completion (false).protected booleanReturn whether this holder should be unbound at completion (or should rather be left bound to the thread after the transaction).reactor.core.publisher.Mono<Void>suspend()Suspend this synchronization.
- 
Constructor Details- 
ReactiveResourceSynchronizationpublic ReactiveResourceSynchronization(O resourceObject, K resourceKey, TransactionSynchronizationManager synchronizationManager) Create a new ReactiveResourceSynchronization for the given holder.- Parameters:
- resourceObject- the resource object to manage
- resourceKey- the key to bind the resource object for
- synchronizationManager- the synchronization manager bound to the current transaction
- See Also:
 
 
- 
- 
Method Details- 
suspendDescription copied from interface:TransactionSynchronizationSuspend this synchronization. Supposed to unbind resources from TransactionSynchronizationManager if managing any.- Specified by:
- suspendin interface- TransactionSynchronization
- See Also:
 
- 
resumeDescription copied from interface:TransactionSynchronizationResume this synchronization. Supposed to rebind resources to TransactionSynchronizationManager if managing any.- Specified by:
- resumein interface- TransactionSynchronization
- See Also:
 
- 
beforeCommitDescription copied from interface:TransactionSynchronizationInvoked before transaction commit (before "beforeCompletion").This callback does not mean that the transaction will actually be committed. A rollback decision can still occur after this method has been called. This callback is rather meant to perform work that's only relevant if a commit still has a chance to happen, such as flushing SQL statements to the database. Note that exceptions will get propagated to the commit caller and cause a rollback of the transaction. - Specified by:
- beforeCommitin interface- TransactionSynchronization
- Parameters:
- readOnly- whether the transaction is defined as read-only transaction
- See Also:
 
- 
beforeCompletionDescription copied from interface:TransactionSynchronizationInvoked before transaction commit/rollback. Can perform resource cleanup before transaction completion.This method will be invoked after beforeCommit, even whenbeforeCommitthrew an exception. This callback allows for closing resources before transaction completion, for any outcome.- Specified by:
- beforeCompletionin interface- TransactionSynchronization
- See Also:
 
- 
afterCommitDescription copied from interface:TransactionSynchronizationInvoked after transaction commit. Can perform further operations right after the main transaction has successfully committed.Can, for example, commit further operations that are supposed to follow on a successful commit of the main transaction, like confirmation messages or emails. NOTE: The transaction will have been committed already, but the transactional resources might still be active and accessible. As a consequence, any data access code triggered at this point will still "participate" in the original transaction, allowing to perform some cleanup (with no commit following anymore!), unless it explicitly declares that it needs to run in a separate transaction. Hence: Use PROPAGATION_REQUIRES_NEWfor any transactional operation that is called from here.- Specified by:
- afterCommitin interface- TransactionSynchronization
 
- 
afterCompletionDescription copied from interface:TransactionSynchronizationInvoked after transaction commit/rollback. Can perform resource cleanup after transaction completion.NOTE: The transaction will have been committed or rolled back already, but the transactional resources might still be active and accessible. As a consequence, any data access code triggered at this point will still "participate" in the original transaction, allowing to perform some cleanup (with no commit following anymore!), unless it explicitly declares that it needs to run in a separate transaction. Hence: Use PROPAGATION_REQUIRES_NEWfor any transactional operation that is called from here.- Specified by:
- afterCompletionin interface- TransactionSynchronization
- Parameters:
- status- completion status according to the- STATUS_*constants
- See Also:
 
- 
shouldUnbindAtCompletionprotected boolean shouldUnbindAtCompletion()Return whether this holder should be unbound at completion (or should rather be left bound to the thread after the transaction).The default implementation returns true.
- 
shouldReleaseBeforeCompletionprotected boolean shouldReleaseBeforeCompletion()Return whether this holder's resource should be released before transaction completion (true) or rather after transaction completion (false).Note that resources will only be released when they are unbound from the thread ( shouldUnbindAtCompletion()).The default implementation returns true.- See Also:
 
- 
shouldReleaseAfterCompletionReturn whether this holder's resource should be released after transaction completion (true).The default implementation returns !shouldReleaseBeforeCompletion(), releasing after completion if no attempt was made before completion.- See Also:
 
- 
processResourceAfterCommitAfter-commit callback for the given resource holder. Only called when the resource hasn't been released yet (shouldReleaseBeforeCompletion()).- Parameters:
- resourceHolder- the resource holder to process
 
- 
releaseResourceRelease the given resource (after it has been unbound from the thread).- Parameters:
- resourceHolder- the resource holder to process
- resourceKey- the key that the resource object was bound for
 
- 
cleanupResourceprotected reactor.core.publisher.Mono<Void> cleanupResource(O resourceHolder, K resourceKey, boolean committed) Perform a cleanup on the given resource (which is left bound to the thread).- Parameters:
- resourceHolder- the resource holder to process
- resourceKey- the key that the resource object was bound for
- committed- whether the transaction has committed (- true) or rolled back (- false)
 
 
-