O
- the resource holder typeK
- the resource key typepublic abstract class ReactiveResourceSynchronization<O,K> extends Object implements TransactionSynchronization
TransactionSynchronization
implementation that manages a
resource object bound through TransactionSynchronizationManager
.STATUS_COMMITTED, STATUS_ROLLED_BACK, STATUS_UNKNOWN
Constructor and Description |
---|
ReactiveResourceSynchronization(O resourceObject,
K resourceKey,
TransactionSynchronizationManager synchronizationManager)
Create a new ReactiveResourceSynchronization for the given holder.
|
Modifier and Type | Method and Description |
---|---|
reactor.core.publisher.Mono<Void> |
afterCommit()
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> |
beforeCompletion()
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 boolean |
shouldReleaseAfterCompletion(O resourceHolder)
Return whether this holder's resource should be released after
transaction completion (
true ). |
protected boolean |
shouldReleaseBeforeCompletion()
Return whether this holder's resource should be released before
transaction completion (
true ) or rather after
transaction completion (false ). |
protected boolean |
shouldUnbindAtCompletion()
Return 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.
|
public ReactiveResourceSynchronization(O resourceObject, K resourceKey, TransactionSynchronizationManager synchronizationManager)
resourceObject
- the resource object to manageresourceKey
- the key to bind the resource object forsynchronizationManager
- the synchronization manager bound to the current transactionTransactionSynchronizationManager.bindResource(java.lang.Object, java.lang.Object)
public reactor.core.publisher.Mono<Void> suspend()
TransactionSynchronization
suspend
in interface TransactionSynchronization
TransactionSynchronizationManager.unbindResource(java.lang.Object)
public reactor.core.publisher.Mono<Void> resume()
TransactionSynchronization
resume
in interface TransactionSynchronization
TransactionSynchronizationManager.bindResource(java.lang.Object, java.lang.Object)
public reactor.core.publisher.Mono<Void> beforeCommit(boolean readOnly)
TransactionSynchronization
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.
beforeCommit
in interface TransactionSynchronization
readOnly
- whether the transaction is defined as read-only transactionTransactionSynchronization.beforeCompletion()
public reactor.core.publisher.Mono<Void> beforeCompletion()
TransactionSynchronization
This method will be invoked after beforeCommit
, even when
beforeCommit
threw an exception. This callback allows for
closing resources before transaction completion, for any outcome.
beforeCompletion
in interface TransactionSynchronization
TransactionSynchronization.beforeCommit(boolean)
,
TransactionSynchronization.afterCompletion(int)
public reactor.core.publisher.Mono<Void> afterCommit()
TransactionSynchronization
Can e.g. 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_NEW
for any
transactional operation that is called from here.
afterCommit
in interface TransactionSynchronization
public reactor.core.publisher.Mono<Void> afterCompletion(int status)
TransactionSynchronization
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_NEW
for any transactional operation that is called from here.
afterCompletion
in interface TransactionSynchronization
status
- completion status according to the STATUS_*
constantsTransactionSynchronization.STATUS_COMMITTED
,
TransactionSynchronization.STATUS_ROLLED_BACK
,
TransactionSynchronization.STATUS_UNKNOWN
,
TransactionSynchronization.beforeCompletion()
protected boolean shouldUnbindAtCompletion()
The default implementation returns true
.
protected boolean shouldReleaseBeforeCompletion()
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
.
releaseResource(O, K)
protected boolean shouldReleaseAfterCompletion(O resourceHolder)
true
).
The default implementation returns !shouldReleaseBeforeCompletion()
,
releasing after completion if no attempt was made before completion.
releaseResource(O, K)
protected reactor.core.publisher.Mono<Void> processResourceAfterCommit(O resourceHolder)
shouldReleaseBeforeCompletion()
).resourceHolder
- the resource holder to processprotected reactor.core.publisher.Mono<Void> releaseResource(O resourceHolder, K resourceKey)
resourceHolder
- the resource holder to processresourceKey
- the key that the resource object was bound forprotected reactor.core.publisher.Mono<Void> cleanupResource(O resourceHolder, K resourceKey, boolean committed)
resourceHolder
- the resource holder to processresourceKey
- the key that the resource object was bound forcommitted
- whether the transaction has committed (true
)
or rolled back (false
)