public interface XAResourceManager
It is expected that the following interfaces are only used during the recovery portion of 2 phase commit, when the transaction manager is cleaning up after a runtime crash - it is expected that no current context managers exist for the Xid's being operated on. The "online" two phase commit protocol will be implemented by calls directly on a TransactionController.
The XAResource interface is a Java mapping of the industry standard XA resource manager interface. Please refer to: X/Open CAE Specification - Distributed Transaction Processing: The XA Specification, X/Open Document No. XO/CAE/91/300 or ISBN 1 872630 24 3.
Modifier and Type | Method and Description |
---|---|
void |
commit(ContextManager cm,
javax.transaction.xa.Xid xid,
boolean onePhase)
This method is called to commit the global transaction specified by xid.
|
ContextManager |
find(javax.transaction.xa.Xid xid)
Find the given Xid in the transaction table.
|
void |
forget(ContextManager cm,
javax.transaction.xa.Xid xid)
This method is called to remove the given transaction
from the transaction table/log.
|
javax.transaction.xa.Xid[] |
recover(int flags)
This method is called to obtain a list of prepared transactions.
|
void |
rollback(ContextManager cm,
javax.transaction.xa.Xid xid)
rollback the transaction identified by Xid.
|
void commit(ContextManager cm, javax.transaction.xa.Xid xid, boolean onePhase) throws StandardException
RESOLVE - how do we map to the "right" XAExceptions.
cm
- The ContextManager returned from the find() call.xid
- A global transaction identifier.onePhase
- If true, the resource manager should use a one-phase
commit protocol to commit the work done on behalf of
xid.StandardException
- Standard exception policy.ContextManager find(javax.transaction.xa.Xid xid)
This routine is used to find a in-doubt transaction from the list of Xid's returned from the recover() routine.
In the current implementation it is up to the calling routine to make the returned ContextManager the "current" ContextManager before calls to commit,abort, or forget. The caller is responsible for error handling, ie. calling cleanupOnError() on the correct ContextManager.
If the Xid is not in the system, "null" is returned. RESOLVE - find out from sku if she wants a exception instead?
xid
- A global transaction identifier.void forget(ContextManager cm, javax.transaction.xa.Xid xid) throws StandardException
Used to let the store remove all record from log and transaction table of the given transaction. This should only be used to clean up heuristically completed transactions, otherwise commit or abort should be used to act on other transactions.
If forget() is called on a transaction which has not be heuristically completed then it will throw an exception: SQLState.STORE_XA_PROTOCOL_VIOLATION.
cm
- The ContextManager returned from the find() call.xid
- A global transaction identifier.StandardException
- Standard exception policy.javax.transaction.xa.Xid[] recover(int flags) throws StandardException
This call returns a complete list of global transactions which are either prepared or heuristically complete.
The XAResource interface expects a scan type interface, but our implementation only returns a complete list of transactions. So to simulate the scan the following state is maintained. If TMSTARTSCAN is specified the complete list is returned. If recover is called with TMNOFLAGS is ever called a 0 length array is returned.
flags
- combination of the following flags
XAResource.{TMSTARTRSCAN,TMENDRSCAN,TMNOFLAGS}.
TMNOFLAGS must be used when no other flags are used.StandardException
- Standard exception policy.void rollback(ContextManager cm, javax.transaction.xa.Xid xid) throws StandardException
The given transaction is roll'ed back and it's history is not maintained in the transaction table or long term log.
cm
- The ContextManager returned from the find() call.xid
- A global transaction identifier.StandardException
- Standard exception policy.Apache Derby V10.13 Internals - Copyright © 2004,2016 The Apache Software Foundation. All Rights Reserved.