org.jvirtanen.nassau.util.SystemClock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nassau Show documentation
Show all versions of nassau Show documentation
NASDAQ transport protocols on the JVM.
package org.jvirtanen.nassau.util;
public class SystemClock implements Clock {
public static final SystemClock INSTANCE = new SystemClock();
@Override
public long currentTimeMillis() {
return System.currentTimeMillis();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy