KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > transaction > xa > XAResource

javax.transaction.xa
Interface XAResource

See Also:
Top Examples, Source Code

void commit(Xid xid,
            boolean onePhase)
            throws XAException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void end(Xid xid,
         int flags)
         throws XAException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void forget(Xid xid)
            throws XAException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


int getTransactionTimeout()
                          throws XAException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


boolean isSameRM(XAResource xares)
                 throws XAException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


int prepare(Xid xid)
            throws XAException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


Xid[] recover(int flag)
              throws XAException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void rollback(Xid xid)
              throws XAException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


boolean setTransactionTimeout(int seconds)
                              throws XAException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void start(Xid xid,
           int flags)
           throws XAException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final int TMENDRSCAN
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final int TMFAIL
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final int TMJOIN
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final int TMNOFLAGS
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final int TMONEPHASE
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final int TMRESUME
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final int TMSTARTRSCAN
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final int TMSUCCESS
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final int TMSUSPEND
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final int XA_OK
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final int XA_RDONLY
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags