Package org.infinispan.loaders.leveldb

Examples of org.infinispan.loaders.leveldb.LevelDBCacheStoreConfig


    this.clearThreshold = clearThreshold;
  }

  @Override
  public LevelDBCacheStoreConfig adapt() {
     LevelDBCacheStoreConfig config = new LevelDBCacheStoreConfig();
   
    LegacyConfigurationAdaptor.adapt(this, config);
    config.setLocation(location);
    config.setExpiredLocation(expiredLocation);
    config.setCompressionType(compressionType.toString());
    config.setImplementationType(implementationType.toString());
    config.setBlockSize(blockSize);
    config.setCacheSize(cacheSize);
    config.setExpiryQueueSize(expiryQueueSize);
    config.setClearThreshold(clearThreshold);
   
    return config;
  }
View Full Code Here


    this.clearThreshold = clearThreshold;
  }

  @Override
  public LevelDBCacheStoreConfig adapt() {
     LevelDBCacheStoreConfig config = new LevelDBCacheStoreConfig();
   
    LegacyConfigurationAdaptor.adapt(this, config);
    config.setLocation(location);
    config.setExpiredLocation(expiredLocation);
    config.setCompressionType(compressionType.toString());
    config.setBlockSize(blockSize);
    config.setCacheSize(cacheSize);
    config.setExpiryQueueSize(expiryQueueSize);
    config.setClearThreshold(clearThreshold);
   
    return config;
  }
View Full Code Here

TOP

Related Classes of org.infinispan.loaders.leveldb.LevelDBCacheStoreConfig

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.