Package org.jboss.cache.loader

Examples of org.jboss.cache.loader.LocalDelegatingCacheLoader


   protected void configureCache() throws Exception {
      delegating_cache=new TreeCache();
      delegating_cache.setCacheMode(TreeCache.LOCAL);
      delegating_cache.createService();
      delegating_cache.startService();
      cache_loader=new LocalDelegatingCacheLoader(delegating_cache);
       // configure first ...
       cache.setCacheLoaderConfiguration(getCacheLoaderConfig("", "org.jboss.cache.loader.LocalDelegatingCacheLoader", "", false, false));

       cache.setCacheLoader(cache_loader);
   }
View Full Code Here

TOP

Related Classes of org.jboss.cache.loader.LocalDelegatingCacheLoader

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.