Broker 10.15 | webMethods Broker Documentation | webMethods Broker Client C API Programmer's Guide | Transaction Semantics | Using Transaction Processing | Delivering Events | Delivering Multiple Events
 
Delivering Multiple Events
The following example shows the use of the awTxDeliverEvents function to deliver multiple events.
Note:
An error will not be returned if the recipient, represented by the destination identifier, no longer exists.
. . .
err = awTxDeliverEvents(txclient,"dest",2,e_array);
if (!verifyNoError(__FILE__,"awDeliverEvents",__LINE__,err)) {
return 0;
}
. . .