本文整理了Java中com.hazelcast.config.Config.addSemaphoreConfig()
方法的一些代码示例,展示了Config.addSemaphoreConfig()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Config.addSemaphoreConfig()
方法的具体详情如下:
包路径:com.hazelcast.config.Config
类名称:Config
方法名:addSemaphoreConfig
[英]Adds the com.hazelcast.core.ISemaphore configuration. The configuration is saved under the config name, which may be a pattern with which the configuration will be obtained in the future.
[中]添加com。黑泽尔卡斯特。果心ISemaphore配置。配置保存在配置名称下,该名称可能是将来获取配置的模式。
代码示例来源:origin: hazelcast/hazelcast-jet
private void handleSemaphore(Node node) {
Node attName = node.getAttributes().getNamedItem("name");
String name = getTextContent(attName);
SemaphoreConfig sConfig = new SemaphoreConfig();
sConfig.setName(name);
for (Node n : childElements(node)) {
String nodeName = cleanNodeName(n);
String value = getTextContent(n).trim();
if ("initial-permits".equals(nodeName)) {
sConfig.setInitialPermits(getIntegerValue("initial-permits", value));
} else if ("backup-count".equals(nodeName)) {
sConfig.setBackupCount(getIntegerValue("backup-count"
, value));
} else if ("async-backup-count".equals(nodeName)) {
sConfig.setAsyncBackupCount(getIntegerValue("async-backup-count"
, value));
} else if ("quorum-ref".equals(nodeName)) {
sConfig.setQuorumName(value);
}
}
config.addSemaphoreConfig(sConfig);
}
代码示例来源:origin: com.hazelcast/hazelcast-all
private void handleSemaphore(Node node) {
Node attName = node.getAttributes().getNamedItem("name");
String name = getTextContent(attName);
SemaphoreConfig sConfig = new SemaphoreConfig();
sConfig.setName(name);
for (Node n : childElements(node)) {
String nodeName = cleanNodeName(n);
String value = getTextContent(n).trim();
if ("initial-permits".equals(nodeName)) {
sConfig.setInitialPermits(getIntegerValue("initial-permits", value));
} else if ("backup-count".equals(nodeName)) {
sConfig.setBackupCount(getIntegerValue("backup-count"
, value));
} else if ("async-backup-count".equals(nodeName)) {
sConfig.setAsyncBackupCount(getIntegerValue("async-backup-count"
, value));
} else if ("quorum-ref".equals(nodeName)) {
sConfig.setQuorumName(value);
}
}
config.addSemaphoreConfig(sConfig);
}
内容来源于网络,如有侵权,请联系作者删除!