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

org.hibernate.cache.Timestamper Maven / Gradle / Ivy

There is a newer version: 4.2.4
Show newest version
//$Id: Timestamper.java 3890 2004-06-03 16:31:32Z steveebersole $
package org.hibernate.cache;

/**
 * Generates increasing identifiers (in a single VM only).
 * Not valid across multiple VMs. Identifiers are not necessarily
 * strictly increasing, but usually are.
 */
public final class Timestamper {
	private static short counter = 0;
	private static long time;
	private static final int BIN_DIGITS = 12;
	public static final short ONE_MS = 1<




© 2015 - 2025 Weber Informatics LLC | Privacy Policy