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

com.flash3388.flashlib.time.SystemMillisClock Maven / Gradle / Ivy

package com.flash3388.flashlib.time;

import java.util.concurrent.TimeUnit;

public class SystemMillisClock implements Clock {

    @Override
    public Time currentTime() {
        return new Time(System.currentTimeMillis(), TimeUnit.MILLISECONDS);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy