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

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

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

Config.findExecutorConfig介绍

[英]Returns a read-only executor configuration for the given name.

The name is matched by pattern to the configuration and by stripping the partition ID qualifier from the given name. If there is no config found by the name, it will return the configuration with the name default.
[中]返回给定名称的只读执行器配置。
该名称通过模式与配置匹配,并从给定名称中剥离分区ID限定符。如果没有通过名称找到配置,它将返回名为default的配置。

代码示例

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

/**
 * Locate the {@code ExecutorConfig} in local {@link #executorConfigCache} or find it from {@link NodeEngine#getConfig()} and
 * cache it locally.
 *
 * @param name
 * @return
 */
private ExecutorConfig getOrFindExecutorConfig(String name) {
  ExecutorConfig cfg = executorConfigCache.get(name);
  if (cfg != null) {
    return cfg;
  } else {
    cfg = nodeEngine.getConfig().findExecutorConfig(name);
    ExecutorConfig executorConfig = executorConfigCache.putIfAbsent(name, cfg);
    return executorConfig == null ? cfg : executorConfig;
  }
}

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

/**
 * Locate the {@code ExecutorConfig} in local {@link #executorConfigCache} or find it from {@link NodeEngine#getConfig()} and
 * cache it locally.
 *
 * @param name
 * @return
 */
private ExecutorConfig getOrFindExecutorConfig(String name) {
  ExecutorConfig cfg = executorConfigCache.get(name);
  if (cfg != null) {
    return cfg;
  } else {
    cfg = nodeEngine.getConfig().findExecutorConfig(name);
    ExecutorConfig executorConfig = executorConfigCache.putIfAbsent(name, cfg);
    return executorConfig == null ? cfg : executorConfig;
  }
}

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

private int handleExecutorService(MemberStateImpl memberState, int count, Config config,
                 Map<String, LocalExecutorStats> executorServices) {
  for (Map.Entry<String, LocalExecutorStats> entry : executorServices.entrySet()) {
    String name = entry.getKey();
    if (config.findExecutorConfig(name).isStatisticsEnabled()) {
      LocalExecutorStats stats = entry.getValue();
      memberState.putLocalExecutorStats(name, stats);
      ++count;
    }
  }
  return count;
}

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

private int handleExecutorService(MemberStateImpl memberState, int count, Config config,
                 Map<String, LocalExecutorStats> executorServices) {
  for (Map.Entry<String, LocalExecutorStats> entry : executorServices.entrySet()) {
    String name = entry.getKey();
    if (config.findExecutorConfig(name).isStatisticsEnabled()) {
      LocalExecutorStats stats = entry.getValue();
      memberState.putLocalExecutorStats(name, stats);
      ++count;
    }
  }
  return count;
}

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

@Override
  public Object createNew(String name) {
    ExecutorConfig executorConfig = nodeEngine.getConfig().findExecutorConfig(name);
    String quorumName = executorConfig.getQuorumName();
    return quorumName == null ? NULL_OBJECT : quorumName;
  }
};

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

@Override
  public Object createNew(String name) {
    ExecutorConfig executorConfig = nodeEngine.getConfig().findExecutorConfig(name);
    String quorumName = executorConfig.getQuorumName();
    return quorumName == null ? NULL_OBJECT : quorumName;
  }
};

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

@Override
  public ManagedExecutorService createNew(String name) {
    ExecutorConfig config = nodeEngine.getConfig().findExecutorConfig(name);
    int queueCapacity = config.getQueueCapacity() <= 0 ? Integer.MAX_VALUE : config.getQueueCapacity();
    return createExecutor(name, config.getPoolSize(), queueCapacity, ExecutorType.CACHED);
  }
};

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

@Override
  public ManagedExecutorService createNew(String name) {
    ExecutorConfig config = nodeEngine.getConfig().findExecutorConfig(name);
    int queueCapacity = config.getQueueCapacity() <= 0 ? Integer.MAX_VALUE : config.getQueueCapacity();
    return createExecutor(name, config.getPoolSize(), queueCapacity, ExecutorType.CACHED);
  }
};

相关文章

微信公众号

最新文章

更多

Config类方法