Copyright © TIBCO Software Inc. All Rights Reserved
Copyright © TIBCO Software Inc. All Rights Reserved


Chapter 2 Messages : tibemsMsg : tibemsMsg_GetMessageID

tibemsMsg_GetMessageID
Function
Purpose
Get the message ID header from a message.
C Declaration
tibems_status tibemsMsg_GetMessageID(
    tibemsMsg message,
    const char** value );
COBOL Call
CALL "tibemsMsg_GetMessageID"
USING BY VALUE message,
BY REFERENCE value,
RETURNING tibems-status
END-CALL.
 
message and value have usage pointer.
Parameters
 
Remarks
Sending calls assign a unique ID to each message, and record it in this header.
All message ID values start with the 3-character prefix ID: (which is reserved for this purpose).
Applications that do not require message IDs can reduce overhead costs by disabling IDs; see tibemsMsgProducer_SetDisableMessageID on page 196. When the producer disables IDs, the value of this header is null.
See Also
tibemsMsg_GetCorrelationID on page 38
tibemsMsg_SetMessageID on page 66
tibemsMsgProducer_SetDisableMessageID on page 196

Copyright © TIBCO Software Inc. All Rights Reserved
Copyright © TIBCO Software Inc. All Rights Reserved