Package org.apache.tomcat.jni
Class Time
java.lang.Object
org.apache.tomcat.jni.Time
Deprecated.
The scope of the APR/Native Library will be reduced in Tomcat
              10.1.x / Tomcat Native 2.x onwards to only include those
              components required to provide OpenSSL integration with the NIO
              and NIO2 connectors.
Time
- Author:
- Mladen Turk
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final longDeprecated.number of milliseconds per microsecondstatic final longDeprecated.number of microseconds per second
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic Stringctime(long t) Deprecated.Formats dates in the ctime() format in an efficient manner.static longmsec(long t) Deprecated.static longnow()Deprecated.number of microseconds since 00:00:00 January 1, 1970 UTCstatic Stringrfc822(long t) Deprecated.Formats dates in the RFC822 format in an efficient manner.static longsec(long t) Deprecated.static voidsleep(long t) Deprecated.Sleep for the specified number of micro-seconds.
- 
Field Details- 
APR_USEC_PER_SECpublic static final long APR_USEC_PER_SECDeprecated.number of microseconds per second- See Also:
 
- 
APR_MSEC_PER_USECpublic static final long APR_MSEC_PER_USECDeprecated.number of milliseconds per microsecond- See Also:
 
 
- 
- 
Constructor Details- 
Timepublic Time()Deprecated.
 
- 
- 
Method Details- 
secpublic static long sec(long t) Deprecated.- Parameters:
- t- The time
- Returns:
- apr_time_t as a second
 
- 
msecpublic static long msec(long t) Deprecated.- Parameters:
- t- The time
- Returns:
- apr_time_t as a msec
 
- 
nowpublic static long now()Deprecated.number of microseconds since 00:00:00 January 1, 1970 UTC- Returns:
- the current time
 
- 
rfc822Deprecated.Formats dates in the RFC822 format in an efficient manner.- Parameters:
- t- the time to convert
- Returns:
- the formatted date
 
- 
ctimeDeprecated.Formats dates in the ctime() format in an efficient manner. Unlike ANSI/ISO C ctime(), apr_ctime() does not include a \n at the end of the string.- Parameters:
- t- the time to convert
- Returns:
- the formatted date
 
- 
sleeppublic static void sleep(long t) Deprecated.Sleep for the specified number of micro-seconds.
 Warning : May sleep for longer than the specified time.- Parameters:
- t- desired amount of time to sleep.
 
 
-