| _tibasDateTime
				 | 
 
				A structure that defines the time format used in TIBCO ActiveSpaces:
				   The _tibasDateTime struct is defined as follows:
				   
				  struct _tibasDateTime {
    tibas_long sec;
    tibas_int nsec;
};
				  The members in the _tibas_dateTime struct are defined as follows:
				   
				   
					 - 
						
 
						   
							 - sec
							 
 
 
							 -   Specifies the time, in seconds, since the UNIX EPOCH time (1970-01-01 00:00:00 +0000).
							 
 
 
						   
						 
					  
 
					 - 
						
 
						   
							 - nsec
							 
 
 
							 -   Specifies the time, in nanoseconds, since the UNIX EPOCH time (1970-01-01 00:00:00 +0000). This field provides is extra timing information in addition to the number of seconds since the EPOCH time; usually this is set to 0.
							 
 
 
						   
						 
					  
 
				   
				 |