package system.util;

/**
 * This is class-structure that holds one row from wrServer's Cache Table. It is used in wrCacher.
 * @author: Nikolai Rangelov
 */
public class wrCachTableField {
	public String cf_wrString;
	public short cf_langKey;
	public long cf_wrKey;
	public int cf_wrCounts;
	public long cf_wrLastCount;
	public volatile boolean cf_NA = false;
	public volatile int cf_UsedCounts;
	public long cf_Loaded;
	public float cf_AvrUsedCounts;
  // "cf_" comes from Cach Field
/**
 * Insert the method's description here.
 */
public wrCachTableField() 
{
 cf_wrKey = Constants.No_Key;
 cf_wrString = null;
 cf_langKey = 0;
 cf_wrCounts = 0; 
 cf_NA = false;
 cf_UsedCounts = 0;
 cf_wrLastCount = 0;
 cf_AvrUsedCounts = 0;
 cf_Loaded = 0;
}
}

