Interface JdbcResourceTransaction
-
- All Known Subinterfaces:
PhysicalJdbcTransaction
- All Known Implementing Classes:
AbstractLogicalConnectionImplementor
,LogicalConnectionManagedImpl
,LogicalConnectionProvidedImpl
public interface JdbcResourceTransaction
Models access to the resource transaction of the underlying JDBC resource.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
begin()
Begin the resource transactionvoid
commit()
Commit the resource transactionTransactionStatus
getStatus()
void
rollback()
Rollback the resource transaction
-
-
-
Method Detail
-
begin
void begin()
Begin the resource transaction
-
commit
void commit()
Commit the resource transaction
-
rollback
void rollback()
Rollback the resource transaction
-
getStatus
TransactionStatus getStatus()
-
-