Package org.infinispan.loaders

Examples of org.infinispan.loaders.AbstractCacheStoreConfig.purgeSynchronously()


      if (legacy instanceof AbstractCacheStoreConfig) {
         AbstractCacheStoreConfig acsc = (AbstractCacheStoreConfig) legacy;
         acsc.fetchPersistentState(configuration.fetchPersistentState());
         acsc.ignoreModifications(configuration.ignoreModifications());
         acsc.purgeOnStartup(configuration.purgeOnStartup());
         acsc.purgeSynchronously(configuration.purgeSynchronously());
         acsc.purgerThreads(configuration.purgerThreads());

         acsc.getAsyncStoreConfig().setEnabled(configuration.async().enabled());
         acsc.getAsyncStoreConfig().flushLockTimeout(configuration.async().flushLockTimeout());
         acsc.getAsyncStoreConfig().modificationQueueSize(configuration.async().modificationQueueSize());
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.