本文整理了Java中com.hazelcast.config.Config.findMapEventJournalConfig()
方法的一些代码示例,展示了Config.findMapEventJournalConfig()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Config.findMapEventJournalConfig()
方法的具体详情如下:
包路径:com.hazelcast.config.Config
类名称:Config
方法名:findMapEventJournalConfig
[英]Returns a read-only map EventJournalconfiguration 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.
[中]返回给定名称的只读映射EventJournalconfiguration。
该名称通过模式与配置匹配,并从给定名称中剥离分区ID限定符。如果没有通过名称找到配置,它将返回名为default的配置。
代码示例来源:origin: hazelcast/hazelcast-jet
@Override
public EventJournalConfig getEventJournalConfig(ObjectNamespace namespace) {
return nodeEngine.getConfig().findMapEventJournalConfig(namespace.getObjectName());
}
代码示例来源:origin: com.hazelcast/hazelcast-all
@Override
public EventJournalConfig getEventJournalConfig(ObjectNamespace namespace) {
return nodeEngine.getConfig().findMapEventJournalConfig(namespace.getObjectName());
}
代码示例来源:origin: com.hazelcast/hazelcast-all
this.name = name;
this.mapConfig = config.findMapConfig(name);
this.eventJournalConfig = config.findMapEventJournalConfig(name);
this.mapServiceContext = mapServiceContext;
NodeEngine nodeEngine = mapServiceContext.getNodeEngine();
代码示例来源:origin: hazelcast/hazelcast-jet
this.name = name;
this.mapConfig = config.findMapConfig(name);
this.eventJournalConfig = config.findMapEventJournalConfig(name);
this.mapServiceContext = mapServiceContext;
NodeEngine nodeEngine = mapServiceContext.getNodeEngine();
内容来源于网络,如有侵权,请联系作者删除!