All Downloads are FREE. Search and download functionalities are using the official Maven repository.

aki.Common.ClockRef Maven / Gradle / Ivy

The newest version!
package aki.Common;
import java.time.Clock;
import java.time.Duration;

public class ClockRef {
    public static Clock clock = Clock.systemDefaultZone();

    public static Duration setTimeout(long timeout) {
        return Duration.ofMillis(timeout);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy