com.hazelcast.config.Config.getSemaphoreConfigs()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(2.2k)|赞(0)|评价(0)|浏览(111)

本文整理了Java中com.hazelcast.config.Config.getSemaphoreConfigs()方法的一些代码示例,展示了Config.getSemaphoreConfigs()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Config.getSemaphoreConfigs()方法的具体详情如下:
包路径:com.hazelcast.config.Config
类名称:Config
方法名:getSemaphoreConfigs

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();
  }
}

相关文章

微信公众号

最新文章

更多

Config类方法