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

com.jpattern.service.cache.statistics.ICacheStatisticsEntry Maven / Gradle / Ivy

There is a newer version: 3.6.2
Show newest version
package com.jpattern.service.cache.statistics;

/**
 * 
 * @author Francesco Cina'
 *
 * 5 May 2011
 */
public interface ICacheStatisticsEntry {
	
	long getTotalCall();
	
	long getHits();
	
	long getMissing();
	
	void increaseHits();
	
	void increaseMissing();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy