Methods Summary |
---|
public static native java.lang.String | ctime(long t)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.
|
public static long | msec(long t)
return t / APR_MSEC_PER_USEC;
|
public static native long | now()number of microseconds since 00:00:00 january 1, 1970 UTC
|
public static native java.lang.String | rfc822(long t)Formats dates in the RFC822
format in an efficient manner.
|
public static long | sec(long t)
return t / APR_USEC_PER_SEC;
|
public static native void | sleep(long t)Sleep for the specified number of micro-seconds.
Warning : May sleep for longer than the specified time.
|