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

com.paritytrading.juncture.hotspot.itch.SystemClock Maven / Gradle / Ivy

There is a newer version: 0.4.1
Show newest version
package com.paritytrading.juncture.hotspot.itch;

class SystemClock implements Clock {

    public static final SystemClock INSTANCE = new SystemClock();

    private SystemClock() {
    }

    @Override
    public long currentTimeMillis() {
        return System.currentTimeMillis();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy