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

io.polaris.core.guid.GuidStdClock Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package io.polaris.core.guid;


/**
 * @author Qt
 * @since 1.8
 */
public class GuidStdClock implements GuidClock {

	@Override
	public long currentTimestamp() {
		return System.currentTimeMillis();
	}

	@Override
	public long nextTimestamp(long lastTimestamp) {
		long currTimestamp = lastTimestamp;
		while (currTimestamp <= lastTimestamp) {
			currTimestamp = currentTimestamp();
		}
		return currTimestamp;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy