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 Summary
Modifier and TypeFieldDescriptionstatic final long
Deprecated.number of milliseconds per microsecondstatic final long
Deprecated.number of microseconds per second -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic String
ctime
(long t) Deprecated.Formats dates in the ctime() format in an efficient manner.static long
msec
(long t) Deprecated.static long
now()
Deprecated.number of microseconds since 00:00:00 January 1, 1970 UTCstatic String
rfc822
(long t) Deprecated.Formats dates in the RFC822 format in an efficient manner.static long
sec
(long t) Deprecated.static void
sleep
(long t) Deprecated.Sleep for the specified number of micro-seconds.
-
Field Details
-
APR_USEC_PER_SEC
public static final long APR_USEC_PER_SECDeprecated.number of microseconds per second- See Also:
-
APR_MSEC_PER_USEC
public static final long APR_MSEC_PER_USECDeprecated.number of milliseconds per microsecond- See Also:
-
-
Constructor Details
-
Time
public Time()Deprecated.
-
-
Method Details
-
sec
public static long sec(long t) Deprecated.- Parameters:
t
- The time- Returns:
- apr_time_t as a second
-
msec
public static long msec(long t) Deprecated.- Parameters:
t
- The time- Returns:
- apr_time_t as a msec
-
now
public static long now()Deprecated.number of microseconds since 00:00:00 January 1, 1970 UTC- Returns:
- the current time
-
rfc822
Deprecated.Formats dates in the RFC822 format in an efficient manner.- Parameters:
t
- the time to convert- Returns:
- the formatted date
-
ctime
Deprecated.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
-
sleep
public 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.
-