Examples of FIFOSimpleDataContainer


Examples of org.infinispan.container.FIFOSimpleDataContainer

   public <T> T construct(Class<T> componentType) {
      switch (configuration.getEvictionStrategy()) {
         case NONE:
            return (T) new SimpleDataContainer(configuration.getConcurrencyLevel());
         case FIFO:
            return (T) new FIFOSimpleDataContainer(configuration.getConcurrencyLevel());
         case LRU:
            return (T) new LRUSimpleDataContainer(configuration.getConcurrencyLevel());
         default:
            throw new ConfigurationException("Unknown eviction strategy " + configuration.getEvictionStrategy());
      }
View Full Code Here

Examples of org.infinispan.container.FIFOSimpleDataContainer

      switch (configuration.getEvictionStrategy()) {
         case NONE:
         case UNORDERED:
            return (T) new SimpleDataContainer(configuration.getConcurrencyLevel());
         case FIFO:
            return (T) new FIFOSimpleDataContainer(configuration.getConcurrencyLevel());
         case LRU:
            return (T) new LRUSimpleDataContainer(configuration.getConcurrencyLevel());
         default:
            throw new ConfigurationException("Unknown eviction strategy " + configuration.getEvictionStrategy());
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.