package market.market_util;

/**
 * A class-sructure that is one row from the market_wr Cache Table
 * @author: Nikolai Rangelov
 */
 
public class wrCachTableField 
{	
  public String cf_wrString;
  public short cf_langKey;
  public long cf_wrKey;
  public long 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
/**
 * wrCachTableField constructor. Inits all fields.
 */
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;
}
}

