Java org.hibernate.resource.transaction.spi TransactionStatus fields, constructors, methods, implement or subclass

Example usage for Java org.hibernate.resource.transaction.spi TransactionStatus fields, constructors, methods, implement or subclass

Introduction

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

The text is from its open source code.

Field

TransactionStatusACTIVE
The transaction has been started, but not yet completed.
TransactionStatusCOMMITTED
The transaction has been completed successfully.
TransactionStatusROLLED_BACK
The transaction has been rolled back.
TransactionStatusMARKED_ROLLBACK
The transaction has been marked for rollback only.
TransactionStatusCOMMITTING
Status code indicating a transaction that has begun the second phase of the two-phase commit protocol, but not yet completed this phase.
TransactionStatusROLLING_BACK
Status code indicating a transaction that is in the process of rolling back.

Method