Package org.infinispan.configuration.cache

Examples of org.infinispan.configuration.cache.LoaderConfigurationBuilder.purgerThreads()


            if (fetchPersistentState != null)
               lcb.fetchPersistentState(fetchPersistentState.booleanValue());
            if (ignoreModifications != null)
               lcb.ignoreModifications(ignoreModifications.booleanValue());
            if (purgerThreads != null)
               lcb.purgerThreads(purgerThreads.intValue());
            if (purgeOnStartup != null)
               lcb.purgeOnStartup(purgeOnStartup.booleanValue());
            if (purgeSynchronously != null)
               lcb.purgeSynchronously(purgeSynchronously.booleanValue());
            parseLoaderChildren(reader, lcb);
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.