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

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

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

Config.getScheduledExecutorConfigs介绍

[英]Returns the map of scheduled executor configurations, mapped by config name. The config name may be a pattern with which the configuration was initially obtained.
[中]返回按配置名称映射的计划执行器配置的映射。配置名称可能是最初获取配置时使用的模式。

代码示例

代码示例来源:origin: hazelcast/hazelcast-jet

@Override
  public Map<String, ScheduledExecutorConfig> getStaticConfigs(@Nonnull Config staticConfig) {
    return staticConfig.getScheduledExecutorConfigs();
  }
});

代码示例来源:origin: com.hazelcast/hazelcast-all

@Override
  public Map<String, ScheduledExecutorConfig> getStaticConfigs(@Nonnull Config staticConfig) {
    return staticConfig.getScheduledExecutorConfigs();
  }
});

代码示例来源:origin: hazelcast/hazelcast-jet

@Override
public Map<String, ScheduledExecutorConfig> getScheduledExecutorConfigs() {
  Map<String, ScheduledExecutorConfig> staticConfigs = staticConfig.getScheduledExecutorConfigs();
  Map<String, ScheduledExecutorConfig> dynamicConfigs = configurationService.getScheduledExecutorConfigs();
  return aggregate(staticConfigs, dynamicConfigs);
}

代码示例来源:origin: com.hazelcast/hazelcast-all

@Override
public Map<String, ScheduledExecutorConfig> getScheduledExecutorConfigs() {
  Map<String, ScheduledExecutorConfig> staticConfigs = staticConfig.getScheduledExecutorConfigs();
  Map<String, ScheduledExecutorConfig> dynamicConfigs = configurationService.getScheduledExecutorConfigs();
  return aggregate(staticConfigs, dynamicConfigs);
}

代码示例来源:origin: hazelcast/hazelcast-jet

@Override
public Config addScheduledExecutorConfig(ScheduledExecutorConfig scheduledExecutorConfig) {
  boolean staticConfigDoesNotExist = checkStaticConfigDoesNotExist(staticConfig.getScheduledExecutorConfigs(),
    scheduledExecutorConfig.getName(), scheduledExecutorConfig);
  if (staticConfigDoesNotExist) {
    configurationService.broadcastConfig(scheduledExecutorConfig);
  }
  return this;
}

代码示例来源:origin: com.hazelcast/hazelcast-all

@Override
public Config addScheduledExecutorConfig(ScheduledExecutorConfig scheduledExecutorConfig) {
  boolean staticConfigDoesNotExist = checkStaticConfigDoesNotExist(staticConfig.getScheduledExecutorConfigs(),
    scheduledExecutorConfig.getName(), scheduledExecutorConfig);
  if (staticConfigDoesNotExist) {
    configurationService.broadcastConfig(scheduledExecutorConfig);
  }
  return this;
}

代码示例来源:origin: hazelcast/hazelcast-jet

private static void scheduledExecutorXmlGenerator(XmlGenerator gen, Config config) {
  for (ScheduledExecutorConfig ex : config.getScheduledExecutorConfigs().values()) {
    MergePolicyConfig mergePolicyConfig = ex.getMergePolicyConfig();
    gen.open("scheduled-executor-service", "name", ex.getName())
        .node("pool-size", ex.getPoolSize())
        .node("durability", ex.getDurability())
        .node("capacity", ex.getCapacity())
        .node("quorum-ref", ex.getQuorumName())
        .node("merge-policy", mergePolicyConfig.getPolicy(), "batch-size", mergePolicyConfig.getBatchSize())
        .close();
  }
}

代码示例来源:origin: com.hazelcast/hazelcast-all

private static void scheduledExecutorXmlGenerator(XmlGenerator gen, Config config) {
  for (ScheduledExecutorConfig ex : config.getScheduledExecutorConfigs().values()) {
    MergePolicyConfig mergePolicyConfig = ex.getMergePolicyConfig();
    gen.open("scheduled-executor-service", "name", ex.getName())
        .node("pool-size", ex.getPoolSize())
        .node("durability", ex.getDurability())
        .node("capacity", ex.getCapacity())
        .node("quorum-ref", ex.getQuorumName())
        .node("merge-policy", mergePolicyConfig.getPolicy(), "batch-size", mergePolicyConfig.getBatchSize())
        .close();
  }
}

相关文章

微信公众号

最新文章

更多

Config类方法