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

org.duelengine.duel.ClockClientIDStrategy Maven / Gradle / Ivy

package org.duelengine.duel;

public class ClockClientIDStrategy implements ClientIDStrategy {

	private final String prefix;

	public ClockClientIDStrategy() {
		this("_");
	}

	public ClockClientIDStrategy(String value) {
		prefix = value;
	}

	@Override
	public String nextID() {
		return prefix + System.currentTimeMillis();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy