本文整理了Java中com.hazelcast.config.Config.findCacheConfigOrNull()
方法的一些代码示例,展示了Config.findCacheConfigOrNull()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Config.findCacheConfigOrNull()
方法的具体详情如下:
包路径:com.hazelcast.config.Config
类名称:Config
方法名:findCacheConfigOrNull
[英]Returns the cache config with the given name or null if there is none. The name is matched by pattern to the configuration and by stripping the partition ID qualifier from the given name.
[中]返回具有给定名称的缓存配置,如果没有,则返回null。该名称通过模式与配置匹配,并从给定名称中剥离分区ID限定符。
代码示例来源:origin: hazelcast/hazelcast-jet
@Override
public CacheConfig findCacheConfig(String simpleName) {
if (simpleName == null) {
return null;
}
CacheSimpleConfig cacheSimpleConfig = nodeEngine.getConfig().findCacheConfigOrNull(simpleName);
if (cacheSimpleConfig == null) {
return null;
}
try {
// Set name explicitly, because found config might have a wildcard name.
return new CacheConfig(cacheSimpleConfig).setName(simpleName);
} catch (Exception e) {
throw new CacheException(e);
}
}
代码示例来源:origin: com.hazelcast/hazelcast-all
@Override
public CacheConfig findCacheConfig(String simpleName) {
if (simpleName == null) {
return null;
}
CacheSimpleConfig cacheSimpleConfig = nodeEngine.getConfig().findCacheConfigOrNull(simpleName);
if (cacheSimpleConfig == null) {
return null;
}
try {
// Set name explicitly, because found config might have a wildcard name.
return new CacheConfig(cacheSimpleConfig).setName(simpleName);
} catch (Exception e) {
throw new CacheException(e);
}
}
内容来源于网络,如有侵权,请联系作者删除!