See Also: TimeUnit Members
A TimeUnit represents time durations at a given unit of granularity and provides utility methods to convert across units, and to perform timing and delay operations in these units. A TimeUnit does not maintain time information, but only helps organize and use time representations that may be maintained separately across various contexts. A nanosecond is defined as one thousandth of a microsecond, a microsecond as one thousandth of a millisecond, a millisecond as one thousandth of a second, a minute as sixty seconds, an hour as sixty minutes, and a day as twenty four hours.
A TimeUnit is mainly used to inform time-based methods how a given timing parameter should be interpreted. For example, the following code will timeout in 50 milliseconds if the Java.Util.Concurrent.Locks.ILock is not available:
java Example
Lock lock = ...; if (lock.tryLock(50L, TimeUnit.MILLISECONDS)) ...
java Example
Lock lock = ...; if (lock.tryLock(50L, TimeUnit.SECONDS)) ...