Broker
10.5 |
webMethods Broker Documentation
|
webMethods Broker Client C API Programmer's Guide
|
Transaction Semantics
|
Using Transaction Processing
|
Delivering Events
|
Delivering a Single Event
Delivering a Single Event
The following example shows the use of the
awTxDeliverEvent
function to deliver a single event within a transaction.
Note:
An error
will not
be returned if the recipient, represented by the destination identifier, no longer exists.
. . .
err = awTxDeliverEvent(txclient,"dest",e);
if (!verifyNoError(__FILE__,"awTxDeliverEvent",__LINE__,err)) {
return 0;
}
. . .