本文整理了Java中com.hazelcast.config.Config.findSemaphoreConfig()
方法的一些代码示例,展示了Config.findSemaphoreConfig()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Config.findSemaphoreConfig()
方法的具体详情如下:
包路径:com.hazelcast.config.Config
类名称:Config
方法名:findSemaphoreConfig
[英]Returns a read-only com.hazelcast.core.ISemaphoreconfiguration 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.
[中]返回只读com。黑泽尔卡斯特。果心给定名称的ISEMAPHORE配置。
该名称通过模式与配置匹配,并从给定名称中剥离分区ID限定符。如果没有通过名称找到配置,它将返回名为default的配置。
代码示例来源:origin: hazelcast/hazelcast-jet
@Override
public Object createNew(String name) {
SemaphoreConfig semaphoreConfig = nodeEngine.getConfig().findSemaphoreConfig(name);
String quorumName = semaphoreConfig.getQuorumName();
return quorumName == null ? NULL_OBJECT : quorumName;
}
};
代码示例来源:origin: com.hazelcast/hazelcast-all
@Override
public Object createNew(String name) {
SemaphoreConfig semaphoreConfig = nodeEngine.getConfig().findSemaphoreConfig(name);
String quorumName = semaphoreConfig.getQuorumName();
return quorumName == null ? NULL_OBJECT : quorumName;
}
};
代码示例来源:origin: hazelcast/hazelcast-jet
@Override
public SemaphoreContainer createNew(String name) {
SemaphoreConfig config = nodeEngine.getConfig().findSemaphoreConfig(name);
IPartitionService partitionService = nodeEngine.getPartitionService();
int partitionId = partitionService.getPartitionId(getPartitionKey(name));
return new SemaphoreContainer(partitionId, new SemaphoreConfig(config));
}
};
代码示例来源:origin: com.hazelcast/hazelcast-all
@Override
public SemaphoreContainer createNew(String name) {
SemaphoreConfig config = nodeEngine.getConfig().findSemaphoreConfig(name);
IPartitionService partitionService = nodeEngine.getPartitionService();
int partitionId = partitionService.getPartitionId(getPartitionKey(name));
return new SemaphoreContainer(partitionId, new SemaphoreConfig(config));
}
};
内容来源于网络,如有侵权,请联系作者删除!