Exemple #1
0
 /** {@inheritDoc} */
 public void cacheHitInMemory() {
   if (!statisticsEnabled.get()) {
     return;
   }
   cacheHitInMemoryCount.incrementAndGet();
   for (CacheUsageListener l : listeners) {
     l.notifyCacheHitInMemory();
   }
 }