Example usage for Java javax.transaction.xa XAResource fields, constructors, methods, implement or subclass
The text is from its open source code.
int | TMENDRSCAN Ends a recovery scan. |
int | TMFAIL Disassociates the caller and marks the transaction branch rollback-only. |
int | TMJOIN Caller is joining existing transaction branch. |
int | TMNOFLAGS Use TMNOFLAGS to indicate no flags value is selected. |
int | TMRESUME Caller is resuming association with a suspended transaction branch. |
int | TMSUCCESS Disassociates caller from a transaction branch. |
int | TMSUSPEND Caller is suspending (not ending) its association with a transaction branch. |
int | XA_RDONLY The transaction branch has been read-only and has been committed. |
int | XA_OK The transaction work has been prepared normally. |
void | commit(Xid xid, boolean onePhase) Commits the global transaction specified by xid. |
void | end(Xid xid, int flags) Ends the work performed on behalf of a transaction branch. |
int | hashCode() Returns a hash code value for the object. |
int | prepare(Xid xid) Ask the resource manager to prepare for a transaction commit of the transaction specified in xid. |
void | rollback(Xid xid) Informs the resource manager to roll back work done on behalf of a transaction branch. |
void | start(Xid xid, int flags) Starts work on behalf of a transaction branch specified in xid . |