Package com.opensymphony.oscache.extra

Examples of com.opensymphony.oscache.extra.CacheEntryEventListenerImpl


  private void setUpCacheAdministrator() {
    cacheAdministrator = new GeneralCacheAdministrator();

    Cache cache = cacheAdministrator.getCache();

    cacheEntryEventListener = new CacheEntryEventListenerImpl();
    cache.addCacheEventListener(cacheEntryEventListener,
        CacheEntryEventListener.class);

    osCacheFacade.setCacheManager(cacheAdministrator);
  }
View Full Code Here


        else
        {
          cacheAdministrator = new GeneralCacheAdministrator();
        }
           
            CacheEntryEventListenerImpl cacheEntryEventListener = new ExtendedCacheEntryEventListenerImpl();
        CacheMapAccessEventListenerImpl cacheMapAccessEventListener = new CacheMapAccessEventListenerImpl();
           
        cacheAdministrator.getCache().addCacheEventListener(cacheEntryEventListener, CacheEntryEventListener.class);
        cacheAdministrator.getCache().addCacheEventListener(cacheMapAccessEventListener, CacheMapAccessEventListener.class);
        caches.put(cacheName, cacheAdministrator);
View Full Code Here

      }
     
      if(cacheAdministrator.getCache().cacheMap instanceof ImprovedLRUCache)
        ((ImprovedLRUCache)cacheAdministrator.getCache().cacheMap).setIsPageCache(true);
     
      CacheEntryEventListenerImpl cacheEntryEventListener = new ExtendedCacheEntryEventListenerImpl();
      CacheMapAccessEventListenerImpl cacheMapAccessEventListener = new CacheMapAccessEventListenerImpl();
         
          cacheAdministrator.getCache().addCacheEventListener(cacheEntryEventListener, CacheEntryEventListener.class);
      cacheAdministrator.getCache().addCacheEventListener(cacheMapAccessEventListener, CacheMapAccessEventListener.class);
      caches.put(cacheName, cacheAdministrator);
View Full Code Here

TOP

Related Classes of com.opensymphony.oscache.extra.CacheEntryEventListenerImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.