Package org.jboss.metadata.plugins.cache

Examples of org.jboss.metadata.plugins.cache.ConcurrentLRUCachePolicyFactory


      if (min == null || max == null)
         throw new IllegalArgumentException("Missing min (" + min + ") or max (" + max + ").");

      log.debug("Creating LRU cache policy, min: " + min + ", max: " + max);

      return new ConcurrentLRUCachePolicyFactory(min, max);
   }
View Full Code Here


      if (min == null || max == null)
         throw new IllegalArgumentException("Missing min (" + min + ") or max (" + max + ").");

      log.debugf("Creating LRU cache policy, min: %1d, max: %2d", min, max);

      return new ConcurrentLRUCachePolicyFactory(min, max);
   }
View Full Code Here

TOP

Related Classes of org.jboss.metadata.plugins.cache.ConcurrentLRUCachePolicyFactory

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.