com.hazelcast.config.Config.findAtomicLongConfig()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(3.0k)|赞(0)|评价(0)|浏览(93)

本文整理了Java中com.hazelcast.config.Config.findAtomicLongConfig()方法的一些代码示例,展示了Config.findAtomicLongConfig()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Config.findAtomicLongConfig()方法的具体详情如下:
包路径:com.hazelcast.config.Config
类名称:Config
方法名:findAtomicLongConfig

Config.findAtomicLongConfig介绍

[英]Returns a read-only AtomicLong 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: hazelcast/hazelcast-jet

/**
 * The {@link AtomicLongContainer} doesn't know its name or configuration, so we create these lookup maps.
 * This is cheaper than storing this information permanently in the container.
 */
@Override
protected void onIteration(String containerName, AtomicLongContainer container) {
  AtomicLongConfig atomicLongConfig = config.findAtomicLongConfig(containerName);
  containerNames.put(container, containerName);
  containerPolicies.put(container, atomicLongConfig.getMergePolicyConfig());
}

代码示例来源:origin: com.hazelcast/hazelcast-all

/**
 * The {@link AtomicLongContainer} doesn't know its name or configuration, so we create these lookup maps.
 * This is cheaper than storing this information permanently in the container.
 */
@Override
protected void onIteration(String containerName, AtomicLongContainer container) {
  AtomicLongConfig atomicLongConfig = config.findAtomicLongConfig(containerName);
  containerNames.put(container, containerName);
  containerPolicies.put(container, atomicLongConfig.getMergePolicyConfig());
}

代码示例来源:origin: hazelcast/hazelcast-jet

@Override
  public Object createNew(String name) {
    AtomicLongConfig config = nodeEngine.getConfig().findAtomicLongConfig(name);
    String quorumName = config.getQuorumName();
    // the quorumName will be null if there is no quorum defined for this data structure,
    // but the QuorumService is active, due to another data structure with a quorum configuration
    return quorumName == null ? NULL_OBJECT : quorumName;
  }
};

代码示例来源:origin: com.hazelcast/hazelcast-all

@Override
  public Object createNew(String name) {
    AtomicLongConfig config = nodeEngine.getConfig().findAtomicLongConfig(name);
    String quorumName = config.getQuorumName();
    // the quorumName will be null if there is no quorum defined for this data structure,
    // but the QuorumService is active, due to another data structure with a quorum configuration
    return quorumName == null ? NULL_OBJECT : quorumName;
  }
};

代码示例来源:origin: hazelcast/hazelcast-jet

@Override
public AtomicLongProxy createDistributedObject(String name) {
  AtomicLongConfig atomicLongConfig = nodeEngine.getConfig().findAtomicLongConfig(name);
  checkBasicConfig(atomicLongConfig, nodeEngine.getSplitBrainMergePolicyProvider());
  return new AtomicLongProxy(name, nodeEngine, this);
}

代码示例来源:origin: com.hazelcast/hazelcast-all

@Override
public AtomicLongProxy createDistributedObject(String name) {
  AtomicLongConfig atomicLongConfig = nodeEngine.getConfig().findAtomicLongConfig(name);
  checkBasicConfig(atomicLongConfig, nodeEngine.getSplitBrainMergePolicyProvider());
  return new AtomicLongProxy(name, nodeEngine, this);
}

相关文章

微信公众号

最新文章

更多

Config类方法