Exemple #1
0
 /**
  * {@inheritDoc}
  *
  * @see net.sf.ehcache.statistics.CacheUsageListener#notifyCacheHitOnDisk()
  */
 public void notifyCacheHitOnDisk() {
   super.cacheHitOnDisk();
 }
Exemple #2
0
 /**
  * {@inheritDoc}
  *
  * @see net.sf.ehcache.statistics.CacheUsageListener#notifyCacheMissedWithExpired()
  */
 public void notifyCacheMissedWithExpired() {
   super.cacheMissExpired();
 }
Exemple #3
0
 /**
  * {@inheritDoc}
  *
  * @see net.sf.ehcache.statistics.CacheUsageListener#notifyCacheElementUpdated()
  */
 public void notifyCacheElementUpdated() {
   super.notifyElementUpdated(null, null);
 }
Exemple #4
0
 /**
  * {@inheritDoc}
  *
  * @see net.sf.ehcache.statistics.CacheUsageListener#notifyCacheHitInMemory()
  */
 public void notifyCacheHitInMemory() {
   super.cacheHitInMemory();
 }
Exemple #5
0
 /**
  * {@inheritDoc}
  *
  * @see net.sf.ehcache.statistics.CacheUsageListener#notifyCacheElementPut()
  */
 public void notifyCacheElementPut() {
   super.notifyElementPut(null, null);
 }
Exemple #6
0
 /**
  * {@inheritDoc}
  *
  * @see net.sf.ehcache.statistics.CacheUsageListener#notifyCacheElementRemoved()
  */
 public void notifyCacheElementRemoved() {
   super.notifyElementRemoved(null, null);
 }
Exemple #7
0
 /**
  * {@inheritDoc}
  *
  * @see net.sf.ehcache.statistics.CacheUsageListener#notifyTimeTakenForGet(long)
  */
 public void notifyTimeTakenForGet(long millis) {
   super.addGetTimeMillis(millis);
 }
Exemple #8
0
 /**
  * {@inheritDoc}
  *
  * @see net.sf.ehcache.statistics.CacheUsageListener#notifyCacheElementExpired()
  */
 public void notifyCacheElementExpired() {
   super.notifyElementExpired(null, null);
 }
Exemple #9
0
 /**
  * {@inheritDoc}
  *
  * @see net.sf.ehcache.statistics.CacheUsageListener#notifyStatisticsEnabledChanged(boolean)
  */
 public void notifyStatisticsEnabledChanged(boolean enableStatistics) {
   super.setStatisticsEnabled(enableStatistics);
 }
Exemple #10
0
 /**
  * {@inheritDoc}
  *
  * @see net.sf.ehcache.statistics.CacheUsageListener#notifyStatisticsCleared()
  */
 public void notifyStatisticsCleared() {
   super.clearStatistics();
 }
Exemple #11
0
 /**
  * {@inheritDoc}
  *
  * @see net.sf.ehcache.statistics.CacheUsageListener#notifyStatisticsAccuracyChanged(int)
  */
 public void notifyStatisticsAccuracyChanged(int statisticsAccuracy) {
   super.setStatisticsAccuracy(statisticsAccuracy);
 }
Exemple #12
0
 /**
  * {@inheritDoc}
  *
  * @see net.sf.ehcache.statistics.CacheUsageListener#notifyRemoveAll()
  */
 public void notifyRemoveAll() {
   super.notifyRemoveAll(null);
 }
Exemple #13
0
 /**
  * {@inheritDoc}
  *
  * @see net.sf.ehcache.statistics.CacheUsageListener#notifyCacheMissedWithNotFound()
  */
 public void notifyCacheMissedWithNotFound() {
   super.cacheMissNotFound();
 }