Broker 10.15 | webMethods Broker Documentation | webMethods Broker Client C API Programmer's Guide | Transaction Semantics | Using Transaction Processing | Ending a Transaction | Committing a Transaction
 
Committing a Transaction
Use the awTxCommit function to commit and end a transaction. All outstanding events will get acknowledged once a transaction is committed. The following example contains an excerpt that shows the use of the awTxCommit function to end a transaction:
. . .
err = awTxCommit(txclient2);
if (!verifyNoError(__FILE__,"awTxCommit",__LINE__,err)) {
return 0;
}
. . .