Exemplo n.º 1
0
 /** {@inheritDoc} */
 public void notifyElementPut(Ehcache cache, Element element) throws CacheException {
   if (!statisticsEnabled.get()) {
     return;
   }
   cacheElementPut.incrementAndGet();
   for (CacheUsageListener l : listeners) {
     l.notifyCacheElementPut();
   }
 }