Message Properties


Arrival Timestamp


Type:
Eight-byte real number of C type T_REAL8
Default Value:
0.0
Valid Values:
Any valid timestamp

The arrival timestamp property indicates the time a message arrived and was read. As messages are read, their arrival timestamp property is automatically set. A value of 0.0 indicates that the arrival timestamp property was not set.

Function to set value:

TipcMsgSetArrivalTimestamp. For example:

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

TipcMsgGetArrivalTimestamp. For example:

T_REAL8 arrival_timestamp; 
if (!TipcMsgGetArrivalTimestamp(msg, &arrival_timestamp)) { 
  /* error */ 
} 

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