本文整理了Java中com.hazelcast.config.Config.getCountDownLatchConfigs()
方法的一些代码示例,展示了Config.getCountDownLatchConfigs()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Config.getCountDownLatchConfigs()
方法的具体详情如下:
包路径:com.hazelcast.config.Config
类名称:Config
方法名:getCountDownLatchConfigs
[英]Returns the map of CountDownLatch configurations, mapped by config name. The config name may be a pattern with which the configuration was initially obtained.
[中]返回按配置名称映射的CountDownLatch配置的映射。配置名称可能是最初获取配置时使用的模式。
代码示例来源:origin: hazelcast/hazelcast-jet
@Override
public Map<String, CountDownLatchConfig> getStaticConfigs(@Nonnull Config staticConfig) {
return staticConfig.getCountDownLatchConfigs();
}
});
代码示例来源:origin: com.hazelcast/hazelcast-all
@Override
public Map<String, CountDownLatchConfig> getStaticConfigs(@Nonnull Config staticConfig) {
return staticConfig.getCountDownLatchConfigs();
}
});
代码示例来源:origin: com.hazelcast/hazelcast-all
@Override
public Map<String, CountDownLatchConfig> getCountDownLatchConfigs() {
Map<String, CountDownLatchConfig> staticConfigs = staticConfig.getCountDownLatchConfigs();
Map<String, CountDownLatchConfig> dynamicConfigs = configurationService.getCountDownLatchConfigs();
return aggregate(staticConfigs, dynamicConfigs);
}
代码示例来源:origin: hazelcast/hazelcast-jet
@Override
public Map<String, CountDownLatchConfig> getCountDownLatchConfigs() {
Map<String, CountDownLatchConfig> staticConfigs = staticConfig.getCountDownLatchConfigs();
Map<String, CountDownLatchConfig> dynamicConfigs = configurationService.getCountDownLatchConfigs();
return aggregate(staticConfigs, dynamicConfigs);
}
代码示例来源:origin: hazelcast/hazelcast-jet
@Override
public Config addCountDownLatchConfig(CountDownLatchConfig countDownLatchConfig) {
boolean staticConfigDoesNotExist = checkStaticConfigDoesNotExist(staticConfig.getCountDownLatchConfigs(),
countDownLatchConfig.getName(), countDownLatchConfig);
if (staticConfigDoesNotExist) {
configurationService.broadcastConfig(countDownLatchConfig);
}
return this;
}
代码示例来源:origin: com.hazelcast/hazelcast-all
@Override
public Config addCountDownLatchConfig(CountDownLatchConfig countDownLatchConfig) {
boolean staticConfigDoesNotExist = checkStaticConfigDoesNotExist(staticConfig.getCountDownLatchConfigs(),
countDownLatchConfig.getName(), countDownLatchConfig);
if (staticConfigDoesNotExist) {
configurationService.broadcastConfig(countDownLatchConfig);
}
return this;
}
代码示例来源:origin: hazelcast/hazelcast-jet
private static void countDownLatchXmlGenerator(XmlGenerator gen, Config config) {
for (CountDownLatchConfig lc : config.getCountDownLatchConfigs().values()) {
gen.open("count-down-latch", "name", lc.getName())
.node("quorum-ref", lc.getQuorumName())
.close();
}
}
代码示例来源:origin: com.hazelcast/hazelcast-all
private static void countDownLatchXmlGenerator(XmlGenerator gen, Config config) {
for (CountDownLatchConfig lc : config.getCountDownLatchConfigs().values()) {
gen.open("count-down-latch", "name", lc.getName())
.node("quorum-ref", lc.getQuorumName())
.close();
}
}
内容来源于网络,如有侵权,请联系作者删除!