io.snice.time.Clock Maven / Gradle / Ivy
/**
*
*/
package io.snice.time;
/**
* Simple interface for representing the system time.
*
* @author [email protected]
*/
public interface Clock {
/**
* Get the current time in milliseconds since midnight, Jan 1, 1970 UTC.
*
* @return
*/
long getCurrentTimeMillis();
}