Package | Description |
---|---|
javax.transaction.xa |
This package contains the classes and interfaces that define the interaction
between the transaction manager and the resources it manages.
|
Modifier and Type | Method and Description |
---|---|
Xid[] |
XAResource.recover(int flag)
Return a list of transactions that are in a prepared or heuristically
state.
|
Modifier and Type | Method and Description |
---|---|
void |
XAResource.commit(Xid xid,
boolean onePhase)
Commit the work done on this resource in the given transaction.
|
void |
XAResource.end(Xid xid,
int flags)
Called to disassociate the resource from a transaction.
|
void |
XAResource.forget(Xid xid)
Tells the resource manager to forget about a heuristic decision.
|
int |
XAResource.prepare(Xid xid)
Prepare to commit the work done on this resource in the given
transaction.
|
void |
XAResource.rollback(Xid xid)
Roll back the work done on this resource in the given transaction.
|
void |
XAResource.start(Xid xid,
int flags)
Called to associate the resource with a transaction.
|
Copyright © 2022 JBoss by Red Hat. All rights reserved.