Broker 10.15 | webMethods Broker Documentation | webMethods Broker Client C API Programmer's Guide | API Reference | awGet | awGetTxSubscriptions
 
awGetTxSubscriptions
BrokerError awGetTxSubscriptions(
BrokerTxClient txclient,
int *n,
BrokerSubscription **subs);
txclient
The Broker client whose subscriptions are to be obtained.
n
The number of subscription structures. This parameter is used for output.
subs
An array of subscription structures. This parameter is used for output. See BrokerSubscription Objects for more information.
Provides an array of subscription structures that represents the subscriptions of the specified txclient.
The caller is responsible for calling free on the subs output value. All values in subs share one memory block so multiple calls to free are not necessary.
Possible BrokerError major codes
Meaning
AW_ERROR_INVALID_CLIENT
The txclient has been destroyed or disconnected.
AW_ERROR_NULL_PARAM
The n or subs parameter is NULL.
See also: