本文整理了Java中com.hazelcast.config.Config.addScheduledExecutorConfig()
方法的一些代码示例,展示了Config.addScheduledExecutorConfig()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Config.addScheduledExecutorConfig()
方法的具体详情如下:
包路径:com.hazelcast.config.Config
类名称:Config
方法名:addScheduledExecutorConfig
[英]Adds the scheduled 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
private void handleScheduledExecutor(Node node) {
ScheduledExecutorConfig scheduledExecutorConfig = new ScheduledExecutorConfig();
scheduledExecutorConfig.setName(getTextContent(node.getAttributes().getNamedItem("name")));
for (Node child : childElements(node)) {
String nodeName = cleanNodeName(child);
if ("merge-policy".equals(nodeName)) {
scheduledExecutorConfig.setMergePolicyConfig(createMergePolicyConfig(child));
} else if ("capacity".equals(nodeName)) {
scheduledExecutorConfig.setCapacity(parseInt(getTextContent(child)));
} else if ("durability".equals(nodeName)) {
scheduledExecutorConfig.setDurability(parseInt(getTextContent(child)));
} else if ("pool-size".equals(nodeName)) {
scheduledExecutorConfig.setPoolSize(parseInt(getTextContent(child)));
} else if ("quorum-ref".equals(nodeName)) {
scheduledExecutorConfig.setQuorumName(getTextContent(child));
}
}
config.addScheduledExecutorConfig(scheduledExecutorConfig);
}
代码示例来源:origin: com.hazelcast/hazelcast-all
private void handleScheduledExecutor(Node node) {
ScheduledExecutorConfig scheduledExecutorConfig = new ScheduledExecutorConfig();
scheduledExecutorConfig.setName(getTextContent(node.getAttributes().getNamedItem("name")));
for (Node child : childElements(node)) {
String nodeName = cleanNodeName(child);
if ("merge-policy".equals(nodeName)) {
scheduledExecutorConfig.setMergePolicyConfig(createMergePolicyConfig(child));
} else if ("capacity".equals(nodeName)) {
scheduledExecutorConfig.setCapacity(parseInt(getTextContent(child)));
} else if ("durability".equals(nodeName)) {
scheduledExecutorConfig.setDurability(parseInt(getTextContent(child)));
} else if ("pool-size".equals(nodeName)) {
scheduledExecutorConfig.setPoolSize(parseInt(getTextContent(child)));
} else if ("quorum-ref".equals(nodeName)) {
scheduledExecutorConfig.setQuorumName(getTextContent(child));
}
}
config.addScheduledExecutorConfig(scheduledExecutorConfig);
}
代码示例来源:origin: hazelcast/hazelcast-code-samples
public static void main(String[] args) {
// for a built-in merge policy we can just provide the simple classname
MergePolicyConfig mergePolicyConfig = new MergePolicyConfig()
.setPolicy("PassThroughMergePolicy");
final ScheduledExecutorConfig scheduledExecutorConfig = new ScheduledExecutorConfig()
.setName(EXECUTOR_NAME)
.setMergePolicyConfig(mergePolicyConfig);
final Config config = new Config()
//.setProperty("hazelcast.logging.type", "none")
.addScheduledExecutorConfig(scheduledExecutorConfig);
HazelcastInstanceFactory.newHazelcastInstance(config);
Hazelcast.shutdownAll();
}
}
代码示例来源:origin: hazelcast/hazelcast-code-samples
.addMapConfig(mapConfig)
.addAtomicReferenceConfig(atomicReferenceConfig)
.addScheduledExecutorConfig(scheduledExecutorConfig);
内容来源于网络,如有侵权,请联系作者删除!