Package org.eclipse.emf.cdo.transaction
Interface CDOXATransaction
- All Superinterfaces:
CDOUserTransaction
- All Known Subinterfaces:
InternalCDOXATransaction
A distributed (XA) transaction that can atomically commit the changes to multiple
resource sets
,
each represented by a registered view set
.- Since:
- 2.0
- Author:
- Simon McDuff
- No Implement
- This interface is not intended to be implemented by clients.
- No Extend
- This interface is not intended to be extended by clients.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
add
(CDOViewSet viewSet) boolean
Allow request that come from containsCDOTransaction
.void
remove
(CDOViewSet viewSet) void
setAllowRequestFromTransactionEnabled
(boolean allRequest) Creates a save point in theCDOTransaction
that can be used to roll back a part of the transactionMethods inherited from interface org.eclipse.emf.cdo.transaction.CDOUserTransaction
commit, commit, rollback
-
Method Details
-
add
-
remove
-
setAllowRequestFromTransactionEnabled
void setAllowRequestFromTransactionEnabled(boolean allRequest) -
isAllowRequestFromTransactionEnabled
boolean isAllowRequestFromTransactionEnabled()Allow request that come from containsCDOTransaction
. Default value is true.If the value is true, cdoTransaction.commit() will call xaTransaction.commit and all
CDOXATransaction
part of xaTransaction will be committed.If the value is false, the user will receive an exception by calling cdoTransaction.commit(). The user can only commit from
CDOXATransaction
. -
setSavepoint
CDOXASavepoint setSavepoint()Description copied from interface:CDOUserTransaction
Creates a save point in theCDOTransaction
that can be used to roll back a part of the transactionSave points do not involve the server side, everything is done on the client side.
- Specified by:
setSavepoint
in interfaceCDOUserTransaction
- Since:
- 3.0
-
getLastSavepoint
CDOXASavepoint getLastSavepoint()- Specified by:
getLastSavepoint
in interfaceCDOUserTransaction
- Since:
- 3.0
-