本文整理了Java中com.hazelcast.config.Config.findReliableTopicConfig()
方法的一些代码示例,展示了Config.findReliableTopicConfig()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Config.findReliableTopicConfig()
方法的具体详情如下:
包路径:com.hazelcast.config.Config
类名称:Config
方法名:findReliableTopicConfig
[英]Returns a read-only reliable topic configuration 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.
[中]返回给定名称的只读可靠主题配置。
该名称通过模式与配置匹配,并从给定名称中剥离分区ID限定符。如果没有通过名称找到配置,它将返回名为default的配置。
代码示例来源:origin: com.hazelcast/hazelcast-all
private int handleReliableTopic(MemberStateImpl memberState, int count, Config config, Map<String, LocalTopicStats> topics) {
for (Map.Entry<String, LocalTopicStats> entry : topics.entrySet()) {
String name = entry.getKey();
if (config.findReliableTopicConfig(name).isStatisticsEnabled()) {
LocalTopicStats stats = entry.getValue();
memberState.putLocalReliableTopicStats(name, stats);
++count;
}
}
return count;
}
代码示例来源:origin: hazelcast/hazelcast-jet
private int handleReliableTopic(MemberStateImpl memberState, int count, Config config, Map<String, LocalTopicStats> topics) {
for (Map.Entry<String, LocalTopicStats> entry : topics.entrySet()) {
String name = entry.getKey();
if (config.findReliableTopicConfig(name).isStatisticsEnabled()) {
LocalTopicStats stats = entry.getValue();
memberState.putLocalReliableTopicStats(name, stats);
++count;
}
}
return count;
}
代码示例来源:origin: hazelcast/hazelcast-jet
@Override
public DistributedObject createDistributedObject(String objectName) {
ReliableTopicConfig topicConfig = nodeEngine.getConfig().findReliableTopicConfig(objectName);
return new ReliableTopicProxy(objectName, nodeEngine, this, topicConfig);
}
代码示例来源:origin: com.hazelcast/hazelcast-all
@Override
public DistributedObject createDistributedObject(String objectName) {
ReliableTopicConfig topicConfig = nodeEngine.getConfig().findReliableTopicConfig(objectName);
return new ReliableTopicProxy(objectName, nodeEngine, this, topicConfig);
}
代码示例来源:origin: hazelcast/hazelcast-jet
@ManagedAnnotation("config")
public String getConfig() {
Config config = service.instance.getConfig();
ReliableTopicConfig topicConfig = config.findReliableTopicConfig(managedObject.getName());
return topicConfig.toString();
}
}
代码示例来源:origin: com.hazelcast/hazelcast-all
@ManagedAnnotation("config")
public String getConfig() {
Config config = service.instance.getConfig();
ReliableTopicConfig topicConfig = config.findReliableTopicConfig(managedObject.getName());
return topicConfig.toString();
}
}
内容来源于网络,如有侵权,请联系作者删除!