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;
}