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