Java org.springframework.transaction.reactive TransactionSynchronizationManager fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.transaction.reactive TransactionSynchronizationManager fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.transaction.reactive TransactionSynchronizationManager.

The text is from its open source code.

Method

voidclear()
Clear the entire transaction synchronization state: registered synchronizations as well as the various transaction characteristics.
voidclearSynchronization()
Deactivate transaction synchronization for the current context.
IntegergetCurrentTransactionIsolationLevel()
Return the isolation level for the current transaction, if any.
StringgetCurrentTransactionName()
Return the name of the current transaction, or null if none set.
ListgetSynchronizations()
Return an unmodifiable snapshot list of all registered synchronizations for the current context.
voidinitSynchronization()
Activate transaction synchronization for the current context.
booleanisActualTransactionActive()
Return whether there currently is an actual transaction active.
booleanisCurrentTransactionReadOnly()
Return whether the current transaction is marked as read-only.
booleanisSynchronizationActive()
Return if transaction synchronization is active for the current context.
voidregisterSynchronization(TransactionSynchronization synchronization)
Register a new transaction synchronization for the current context.
voidsetActualTransactionActive(boolean active)
Expose whether there currently is an actual transaction active.
voidsetCurrentTransactionIsolationLevel(@Nullable Integer isolationLevel)
Expose an isolation level for the current transaction.
voidsetCurrentTransactionName(@Nullable String name)
Expose the name of the current transaction, if any.
voidsetCurrentTransactionReadOnly(boolean readOnly)
Expose a read-only flag for the current transaction.