本文整理了Java中com.hazelcast.config.Config.getCacheConfigs()
方法的一些代码示例,展示了Config.getCacheConfigs()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Config.getCacheConfigs()
方法的具体详情如下:
包路径:com.hazelcast.config.Config
类名称:Config
方法名:getCacheConfigs
[英]Returns the map of cache configurations, mapped by config name. The config name may be a pattern with which the configuration was initially obtained.
[中]返回按配置名称映射的缓存配置的映射。配置名称可能是最初获取配置时使用的模式。
代码示例来源:origin: hazelcast/hazelcast-jet
@Override
public Map<String, CacheSimpleConfig> getStaticConfigs(@Nonnull Config staticConfig) {
return staticConfig.getCacheConfigs();
}
});
代码示例来源:origin: com.hazelcast/hazelcast-all
@Override
public Map<String, CacheSimpleConfig> getStaticConfigs(@Nonnull Config staticConfig) {
return staticConfig.getCacheConfigs();
}
});
代码示例来源:origin: com.hazelcast/hazelcast-all
@Override
public Map<String, CacheSimpleConfig> getCacheConfigs() {
Map<String, CacheSimpleConfig> staticConfigs = staticConfig.getCacheConfigs();
Map<String, CacheSimpleConfig> dynamicConfigs = configurationService.getCacheSimpleConfigs();
return aggregate(staticConfigs, dynamicConfigs);
}
代码示例来源:origin: hazelcast/hazelcast-jet
@Override
public Map<String, CacheSimpleConfig> getCacheConfigs() {
Map<String, CacheSimpleConfig> staticConfigs = staticConfig.getCacheConfigs();
Map<String, CacheSimpleConfig> dynamicConfigs = configurationService.getCacheSimpleConfigs();
return aggregate(staticConfigs, dynamicConfigs);
}
代码示例来源:origin: hazelcast/hazelcast-jet
@Override
public Config addCacheConfig(CacheSimpleConfig cacheConfig) {
boolean staticConfigDoesNotExist = checkStaticConfigDoesNotExist(staticConfig.getCacheConfigs(),
cacheConfig.getName(), cacheConfig);
if (staticConfigDoesNotExist) {
configurationService.broadcastConfig(cacheConfig);
}
return this;
}
代码示例来源:origin: com.hazelcast/hazelcast-all
@Override
public Config addCacheConfig(CacheSimpleConfig cacheConfig) {
boolean staticConfigDoesNotExist = checkStaticConfigDoesNotExist(staticConfig.getCacheConfigs(),
cacheConfig.getName(), cacheConfig);
if (staticConfigDoesNotExist) {
configurationService.broadcastConfig(cacheConfig);
}
return this;
}
代码示例来源:origin: hazelcast/hazelcast-jet
private static void cacheConfigXmlGenerator(XmlGenerator gen, Config config) {
for (CacheSimpleConfig c : config.getCacheConfigs().values()) {
gen.open("cache", "name", c.getName());
if (c.getKeyType() != null) {
代码示例来源:origin: com.hazelcast/hazelcast-all
private static void cacheConfigXmlGenerator(XmlGenerator gen, Config config) {
for (CacheSimpleConfig c : config.getCacheConfigs().values()) {
gen.open("cache", "name", c.getName());
if (c.getKeyType() != null) {
内容来源于网络,如有侵权,请联系作者删除!