Compression


Type:
Boolean of C type T_BOOL
Default Value:
The message type compression property is used. The message type compression default is FALSE.
Valid Values:
TRUE or FALSE

The compression property identifies whether compression is enabled. When the compression property is set to TRUE, the fields in the message are automatically compressed when the message is sent. The message is automatically decompressed when a receiver of the message attempts to access any of the message’s fields. For a discussion of compression, see Message Compression.

Function to set value:

TipcMsgSetCompression. For example:

if (!TipcMsgSetCompression(msg, T_TRUE)) { 
  /* error */ 
} 
Function to get value:

TipcMsgGetCompression. For example:

T_BOOL compress; 
if (!TipcMsgGetCompression(msg, &compress)) { 
  /* error */ 
} 

TIBCO SmartSockets™ User’s Guide
Software Release 6.8, July 2006
Copyright © TIBCO Software Inc. All rights reserved
www.tibco.com