Broker 10.15 | webMethods Broker Documentation | webMethods Broker Client C API Programmer's Guide | API Reference | awTx | awTxCanSubscribe
 
awTxCanSubscribe
BrokerError awTxCanSubscribe(
BrokerTxClient txclient,
char *event_type_name,
BrokerBoolean *can_subscribe);
txclient
The Broker client whose ability to subscribe is to be tested.
event_type_name
The event type name to which the Broker client wishes to subscribe.
can_subscribe
An indication of whether or not the Broker client is permitted to subscribe to the specified event type. Set to 1 (true) if the Broker client is permitted; otherwise, set to 0 (false). This parameter is used for output.
Determines whether or not the specified txclient can subscribe to the specified event type. Also determines if an event of the specified type can be delivered to the txclient. Upon return, the can_subscribeparameter is set to1 (true) if the Broker client is allowed to subscribe to the event; otherwise can_subscribe is set to 0 (false).
Possible BrokerError major codes
Meaning
AW_ERROR_INVALID_CLIENT
The txclient has been destroyed or disconnected.
AW_ERROR_NULL_PARAM
The parameter event_type_nameor can_subscribe is NULL.
AW_ERROR_UNKNOWN_EVENT_TYPE
The event type does not exist on the Broker.
See also: