Java org.springframework.transaction.support TransactionSynchronization fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.transaction.support TransactionSynchronization fields, constructors, methods, implement or subclass

Introduction

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

The text is from its open source code.

Implementation

org.springframework.transaction.support.TransactionSynchronization has the following implementations.
Click this link to see all its implementation.

Field

intSTATUS_COMMITTED
Completion status in case of proper commit.
intSTATUS_ROLLED_BACK
Completion status in case of proper rollback.
intSTATUS_UNKNOWN
Completion status in case of heuristic mixed completion or system errors.

Constructor

Method

voidafterCommit()
Invoked after transaction commit.
voidafterCompletion(int status)
Invoked after transaction commit/rollback.
voidbeforeCommit(boolean readOnly)
Invoked before transaction commit (before "beforeCompletion").
voidbeforeCompletion()
Invoked before transaction commit/rollback.
voidflush()
Flush the underlying session to the datastore, if applicable: for example, a Hibernate/JPA session.
ClassgetClass()
Returns the runtime class of this Object .
voidresume()
Resume this synchronization.
voidsuspend()
Suspend this synchronization.