本文整理了Java中com.hazelcast.config.Config.getExecutorConfigs()
方法的一些代码示例,展示了Config.getExecutorConfigs()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Config.getExecutorConfigs()
方法的具体详情如下:
包路径:com.hazelcast.config.Config
类名称:Config
方法名:getExecutorConfigs
[英]Returns the map of executor configurations, mapped by config name. The config name may be a pattern with which the configuration was initially obtained.
[中]返回按配置名称映射的执行器配置的映射。配置名称可能是最初获取配置时使用的模式。
代码示例来源:origin: com.hazelcast/hazelcast-all
@Override
public Map<String, ExecutorConfig> getStaticConfigs(@Nonnull Config staticConfig) {
return staticConfig.getExecutorConfigs();
}
});
代码示例来源:origin: hazelcast/hazelcast-jet
@Override
public Map<String, ExecutorConfig> getStaticConfigs(@Nonnull Config staticConfig) {
return staticConfig.getExecutorConfigs();
}
});
代码示例来源:origin: hazelcast/hazelcast-jet
@Override
public Map<String, ExecutorConfig> getExecutorConfigs() {
Map<String, ExecutorConfig> staticConfigs = staticConfig.getExecutorConfigs();
Map<String, ExecutorConfig> dynamicConfigs = configurationService.getExecutorConfigs();
return aggregate(staticConfigs, dynamicConfigs);
}
代码示例来源:origin: com.hazelcast/hazelcast-all
@Override
public Map<String, ExecutorConfig> getExecutorConfigs() {
Map<String, ExecutorConfig> staticConfigs = staticConfig.getExecutorConfigs();
Map<String, ExecutorConfig> dynamicConfigs = configurationService.getExecutorConfigs();
return aggregate(staticConfigs, dynamicConfigs);
}
代码示例来源:origin: com.hazelcast/hazelcast-all
@Override
public Config addExecutorConfig(ExecutorConfig executorConfig) {
boolean staticConfigDoesNotExist = checkStaticConfigDoesNotExist(staticConfig.getExecutorConfigs(),
executorConfig.getName(), executorConfig);
if (staticConfigDoesNotExist) {
configurationService.broadcastConfig(executorConfig);
}
return this;
}
代码示例来源:origin: hazelcast/hazelcast-jet
@Override
public Config addExecutorConfig(ExecutorConfig executorConfig) {
boolean staticConfigDoesNotExist = checkStaticConfigDoesNotExist(staticConfig.getExecutorConfigs(),
executorConfig.getName(), executorConfig);
if (staticConfigDoesNotExist) {
configurationService.broadcastConfig(executorConfig);
}
return this;
}
代码示例来源:origin: com.hazelcast/hazelcast-all
@Override
public ManagedExecutorService register(String name, int defaultPoolSize, int defaultQueueCapacity, ExecutorType type) {
ExecutorConfig config = nodeEngine.getConfig().getExecutorConfigs().get(name);
int poolSize = defaultPoolSize;
int queueCapacity = defaultQueueCapacity;
if (config != null) {
poolSize = config.getPoolSize();
if (config.getQueueCapacity() <= 0) {
queueCapacity = Integer.MAX_VALUE;
} else {
queueCapacity = config.getQueueCapacity();
}
}
ManagedExecutorService executor = createExecutor(name, poolSize, queueCapacity, type);
if (executors.putIfAbsent(name, executor) != null) {
throw new IllegalArgumentException("ExecutorService['" + name + "'] already exists!");
}
metricsRegistry.scanAndRegister(executor, "internal-executor[" + name + "]");
return executor;
}
代码示例来源:origin: hazelcast/hazelcast-jet
@Override
public ManagedExecutorService register(String name, int defaultPoolSize, int defaultQueueCapacity, ExecutorType type) {
ExecutorConfig config = nodeEngine.getConfig().getExecutorConfigs().get(name);
int poolSize = defaultPoolSize;
int queueCapacity = defaultQueueCapacity;
if (config != null) {
poolSize = config.getPoolSize();
if (config.getQueueCapacity() <= 0) {
queueCapacity = Integer.MAX_VALUE;
} else {
queueCapacity = config.getQueueCapacity();
}
}
ManagedExecutorService executor = createExecutor(name, poolSize, queueCapacity, type);
if (executors.putIfAbsent(name, executor) != null) {
throw new IllegalArgumentException("ExecutorService['" + name + "'] already exists!");
}
metricsRegistry.scanAndRegister(executor, "internal-executor[" + name + "]");
return executor;
}
代码示例来源:origin: hazelcast/hazelcast-jet
private static void executorXmlGenerator(XmlGenerator gen, Config config) {
for (ExecutorConfig ex : config.getExecutorConfigs().values()) {
gen.open("executor-service", "name", ex.getName())
.node("statistics-enabled", ex.isStatisticsEnabled())
.node("pool-size", ex.getPoolSize())
.node("queue-capacity", ex.getQueueCapacity())
.node("quorum-ref", ex.getQuorumName())
.close();
}
}
代码示例来源:origin: com.hazelcast/hazelcast-all
private static void executorXmlGenerator(XmlGenerator gen, Config config) {
for (ExecutorConfig ex : config.getExecutorConfigs().values()) {
gen.open("executor-service", "name", ex.getName())
.node("statistics-enabled", ex.isStatisticsEnabled())
.node("pool-size", ex.getPoolSize())
.node("queue-capacity", ex.getQueueCapacity())
.node("quorum-ref", ex.getQuorumName())
.close();
}
}
内容来源于网络,如有侵权,请联系作者删除!