本文整理了Java中com.hazelcast.config.Config.getSemaphoreConfigs()
方法的一些代码示例,展示了Config.getSemaphoreConfigs()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Config.getSemaphoreConfigs()
方法的具体详情如下:
包路径:com.hazelcast.config.Config
类名称:Config
方法名:getSemaphoreConfigs
[英]Returns the collection of com.hazelcast.core.ISemaphore configs added to this config object.
[中]返回com的集合。黑泽尔卡斯特。果心ISemaphore配置已添加到此配置对象。
代码示例来源:origin: hazelcast/hazelcast-jet
@Override
public Collection<SemaphoreConfig> getSemaphoreConfigs() {
Collection<SemaphoreConfig> staticConfigs = staticConfig.getSemaphoreConfigs();
Map<String, SemaphoreConfig> semaphoreConfigs = configurationService.getSemaphoreConfigs();
ArrayList<SemaphoreConfig> aggregated = new ArrayList<SemaphoreConfig>(staticConfigs);
aggregated.addAll(semaphoreConfigs.values());
return aggregated;
}
代码示例来源:origin: com.hazelcast/hazelcast-all
@Override
public Collection<SemaphoreConfig> getSemaphoreConfigs() {
Collection<SemaphoreConfig> staticConfigs = staticConfig.getSemaphoreConfigs();
Map<String, SemaphoreConfig> semaphoreConfigs = configurationService.getSemaphoreConfigs();
ArrayList<SemaphoreConfig> aggregated = new ArrayList<SemaphoreConfig>(staticConfigs);
aggregated.addAll(semaphoreConfigs.values());
return aggregated;
}
代码示例来源:origin: hazelcast/hazelcast-jet
private static void semaphoreXmlGenerator(XmlGenerator gen, Config config) {
for (SemaphoreConfig sc : config.getSemaphoreConfigs()) {
gen.open("semaphore", "name", sc.getName())
.node("initial-permits", sc.getInitialPermits())
.node("backup-count", sc.getBackupCount())
.node("async-backup-count", sc.getAsyncBackupCount())
.node("quorum-ref", sc.getQuorumName())
.close();
}
}
代码示例来源:origin: com.hazelcast/hazelcast-all
private static void semaphoreXmlGenerator(XmlGenerator gen, Config config) {
for (SemaphoreConfig sc : config.getSemaphoreConfigs()) {
gen.open("semaphore", "name", sc.getName())
.node("initial-permits", sc.getInitialPermits())
.node("backup-count", sc.getBackupCount())
.node("async-backup-count", sc.getAsyncBackupCount())
.node("quorum-ref", sc.getQuorumName())
.close();
}
}
内容来源于网络,如有侵权,请联系作者删除!