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

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

Introduction

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

The text is from its open source code.

Implementation

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

Method

ObjectcreateSavepoint()
Create a new savepoint.
voidflush()
Flush the underlying session to the datastore, if applicable: for example, all affected Hibernate/JPA sessions.
booleanisCompleted()
Return whether this transaction is completed, that is, whether it has already been committed or rolled back.
booleanisNewTransaction()
Return whether the present transaction is new; otherwise participating in an existing transaction, or potentially not running in an actual transaction in the first place.
booleanisRollbackOnly()
Return whether the transaction has been marked as rollback-only (either by the application or by the transaction infrastructure).
voidreleaseSavepoint(Object savepoint)
Explicitly release the given savepoint.
voidrollbackToSavepoint(Object savepoint)
Roll back to the given savepoint.
voidsetRollbackOnly()
Set the transaction rollback-only.