![JAR search and dependency download from the Maven repository](/logo.png)
jio.time.CustomClock Maven / Gradle / Ivy
The newest version!
package jio.time;
import java.util.function.Supplier;
record CustomClock(Supplier time) implements Clock {
@Override
public Long get() {
return time.get();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy