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

com.firefly.utils.time.Millisecond100Clock Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.firefly.utils.time;

public class Millisecond100Clock {
	private static final TimeProvider TIME_PROVIDER = new TimeProvider(100);
	static {
		TIME_PROVIDER.start();
	}
	
	public static long currentTimeMillis() {
		return TIME_PROVIDER.currentTimeMillis();
	}
	
	public static void stop() {
		TIME_PROVIDER.stop();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy