Examples of GroupsConfigurationBuilder


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
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.