Package org.infinispan.configuration.cache

Examples of org.infinispan.configuration.cache.GroupsConfigurationBuilder


        ModuleIdentifier moduleId = this.dependencies.getModuleIdentifier();
        if (moduleId != null) {
            try {
                Module module = this.dependencies.getModuleLoader().loadModule(moduleId);

                GroupsConfigurationBuilder groupsBuilder = builder.clustering().hash().groups();
                for (Grouper<?> grouper: ServiceLoader.load(Grouper.class, module.getClassLoader())) {
                    groupsBuilder.addGrouper(grouper);
                }
            } catch (ModuleLoadException e) {
                throw new IllegalArgumentException(e);
            }
        }
View Full Code Here

TOP

Related Classes of org.infinispan.configuration.cache.GroupsConfigurationBuilder

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.