Property Table Functions (TipcProperties*)


The TipcProperties* functions are used to manipulate properties tables which describe the properties of queues and queue managers. For more information on queues and queue managers, see the TIBCO SmartMQ User’s Guide.

TipcPropertiesCreate — create a properties table

T_IPC_PROPERTIES TipcPropertiesCreate(void) 

TipcPropertiesCreateMsg — create a properties table from a SmartSockets message

T_IPC_PROPERTIES TipcPropertiesCreateMsg(msg) 
T_IPC_MSG msg; 

TipcPropertiesDestroy — destroy a properties table

T_BOOL TipcPropertiesDestroy(props) 
T_IPC_PROPERTIES props; 

TipcPropertiesGet — determine the property value for the specified property name

T_STR TipcPropertiesGet(props, name) 
T_IPC_PROPERTIES props; 
T_STR name; 

TipcPropertiesGetCount — determine the count of name-value pairs in the properties table

T_BOOL TipcPropertiesGetCount(props, count_return) 
T_IPC_PROPERTIES props; 
T_INT4 *count_return; 

TipcPropertiesGetDefault — determine the default value for the specified property

T_STR TipcPropertiesGetDefault(props, name) 
T_IPC_PROPERTIES props; 
T_STR name; 

TipcPropertiesMsgCreate — create a SmartSockets message from a properties table

T_IPC_MSG TipcPropertiesMsgCreate(props) 
T_IPC_PROPERTIES props; 

TipcPropertiesSet — set the specified name and value in the properties table

T_BOOL TipcPropertiesSet(props, name, value) 
T_IPC_PROPERTIES props; 
T_STR name; 
T_STR value; 

TipcPropertiesTraverse — traverse the properties table

T_STR TipcPropertiesTraverse(props, traverse_func, traverse_arg) 
T_IPC_PROPERTIES props; 
T_IPC_PROPERTY_TRAV_FUNC traverse_func; 
T_PTR traverse_arg; 

TIBCO SmartSockets™ API Quick Reference
Software Release 6.8, July 2006
Copyright © TIBCO Software Inc. All rights reserved
www.tibco.com