本文整理了Java中com.hazelcast.config.Config.addListConfig()
方法的一些代码示例,展示了Config.addListConfig()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Config.addListConfig()
方法的具体详情如下:
包路径:com.hazelcast.config.Config
类名称:Config
方法名:addListConfig
[英]Adds the list configuration. The configuration is saved under the config name, which may be a pattern with which the configuration will be obtained in the future.
[中]添加列表配置。配置保存在配置名称下,该名称可能是将来获取配置的模式。
代码示例来源:origin: paascloud/paascloud-master
/**
* Hazelcast config config.
*
* @return the config
*/
@Bean
public Config hazelcastConfig() {
return new Config().setProperty("hazelcast.jmx", "true")
.addMapConfig(new MapConfig("spring-boot-admin-application-store").setBackupCount(1)
.setEvictionPolicy(EvictionPolicy.NONE))
.addListConfig(new ListConfig("spring-boot-admin-event-store").setBackupCount(1)
.setMaxSize(1000));
}
代码示例来源:origin: hazelcast/hazelcast-code-samples
public static void main(String[] args) {
// for a custom merge policy we have to provide the FQCN, not just the simple classname
MergePolicyConfig mergePolicyConfig = new MergePolicyConfig()
.setPolicy(MergeCollectionOfIntegerValuesMergePolicy.class.getName());
final ListConfig listConfig = new ListConfig()
.setName(LIST_NAME)
.setMergePolicyConfig(mergePolicyConfig);
final Config config = new Config()
//.setProperty("hazelcast.logging.type", "none")
.addListConfig(listConfig);
HazelcastInstanceFactory.newHazelcastInstance(config);
Hazelcast.shutdownAll();
}
}
代码示例来源:origin: hazelcast/hazelcast-jet
config.addListConfig(lConfig);
代码示例来源:origin: com.hazelcast/hazelcast-all
config.addListConfig(lConfig);
代码示例来源:origin: org.deeplearning4j/deeplearning4j-scaleout-akka
jobConfig.setName(JOBS);
conf.addListConfig(jobConfig);
conf.addListConfig(replicateConfig);
topicsConfig.setName(TOPICS);
conf.addListConfig(topicsConfig);
updatesConfig.setName(UPDATES);
conf.addListConfig(updatesConfig);
conf.addListConfig(availableWorkersConfig);
内容来源于网络,如有侵权,请联系作者删除!