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

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

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

Config.addExecutorConfig介绍

[英]Adds the executor 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: hazelcast/hazelcast-jet

/**
   * Starts the test application.
   * <p>
   * Loads the config from classpath hazelcast.xml, if it fails to load, will use default config.
   */
  public static void main(String[] args) throws Exception {
    Config config;
    try {
      config = new FileSystemXmlConfig("hazelcast.xml");
    } catch (FileNotFoundException e) {
      config = new Config();
    }
    for (int i = 1; i <= LOAD_EXECUTORS_COUNT; i++) {
      config.addExecutorConfig(new ExecutorConfig(EXECUTOR_NAMESPACE + " " + i).setPoolSize(i));
    }

    ConsoleApp consoleApp = new ConsoleApp(Hazelcast.newHazelcastInstance(config));
    consoleApp.start();
  }
}

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

/**
   * Starts the test application.
   * <p>
   * Loads the config from classpath hazelcast.xml, if it fails to load, will use default config.
   */
  public static void main(String[] args) throws Exception {
    Config config;
    try {
      config = new FileSystemXmlConfig("hazelcast.xml");
    } catch (FileNotFoundException e) {
      config = new Config();
    }
    for (int i = 1; i <= LOAD_EXECUTORS_COUNT; i++) {
      config.addExecutorConfig(new ExecutorConfig(EXECUTOR_NAMESPACE + " " + i).setPoolSize(i));
    }

    ConsoleApp consoleApp = new ConsoleApp(Hazelcast.newHazelcastInstance(config));
    consoleApp.start();
  }
}

代码示例来源:origin: apifest/apifest-oauth20

private static Config createConfiguration() {
  Config config = new Config();
  NetworkConfig networkCfg = createNetworkConfigs();
  config.setNetworkConfig(networkCfg);
  ExecutorConfig executorConfig = new ExecutorConfig();
  executorConfig.setPoolSize(MAX_POOL_SIZE);
  executorConfig.setStatisticsEnabled(false);
  config.addExecutorConfig(executorConfig);
  return config;
}

代码示例来源:origin: jclawson/hazeltask

.addExecutorConfig(new ExecutorConfig()
  .setName(taskDistributorName)
  .setPoolSize(1)

相关文章

微信公众号

最新文章

更多

Config类方法