![]() |
Copyright © TIBCO Software Inc. All Rights Reserved |
tibemsMapMsg—SetSingle Value
C Declarationstibems_status tibemsMapMsg_SetBoolean(tibemsMapMsg message,tibems_bool value );tibems_status tibemsMapMsg_SetByte(tibemsMapMsg message,tibems_byte value );tibems_status tibemsMapMsg_SetChar(tibemsMapMsg message,tibems_wchar value );tibems_status tibemsMapMsg_SetDouble(tibemsMapMsg message,tibems_double value );tibems_status tibemsMapMsg_SetFloat(tibemsMapMsg message,tibems_float value );tibems_status tibemsMapMsg_SetInt(tibemsMapMsg message,tibems_int value );tibems_status tibemsMapMsg_SetLong(tibemsMapMsg message,tibems_long value );tibems_status tibemsMapMsg_SetShort(tibemsMapMsg message,tibems_short value );tibems_status tibemsMapMsg_SetString(tibemsMapMsg message,Array
C Declarationstibems_status tibemsMapMsg_SetDoubleArray(tibemsMapMsg message,const tibems_double* value,tibems_uint count );tibems_status tibemsMapMsg_SetFloatArray(tibemsMapMsg message,const tibems_float* value,tibems_uint count );tibems_status tibemsMapMsg_SetIntArray(tibemsMapMsg message,const tibems_int* value,tibems_uint count );tibems_status tibemsMapMsg_SetLongArray(tibemsMapMsg message,const tibems_long* value,tibems_uint count );tibems_status tibemsMapMsg_SetShortArray(tibemsMapMsg message,const tibems_short* value,tibems_uint count );Nested Message C Declarationstibems_status tibemsMapMsg_SetMapMsg(tibemsMapMsg message,tibems_bool takeOwnership );tibems_status tibemsMapMsg_SetStreamMsg(tibemsMsg message,tibemsMsg streamMsg,tibems_bool takeOwnership);
Array functions set array values of this size (must be a positive number). tibemsMapMsg_SetMapMsg sets this map message as a nested value. Nested message functions use this parameter to control ownership of nested messages.When this argument is TIBEMS_TRUE, the call increments the reference count of the nested message. This action prevents other calls from destroying the nested message improperly.We recommend that all calls supply TIBEMS_TRUE.Array functions and nested message functions extend the JMS specification. Use them only with SmartSockets or Rendezvous messages. Programs that use these extensions might be non-compliant, and cannot interoperate with other JMS providers.
![]() |
Copyright © TIBCO Software Inc. All Rights Reserved |