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

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

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

Config.addAtomicLongConfig介绍

[英]Adds the AtomicLong configuration. The configuration is saved under the config name, which may be a pattern with which the configuration will be obtained in the future.
[中]添加原子长配置。配置保存在配置名称下,该名称可能是将来获取配置的模式。

代码示例

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

private void handleAtomicLong(Node node) {
  Node attName = node.getAttributes().getNamedItem("name");
  String name = getTextContent(attName);
  AtomicLongConfig atomicLongConfig = new AtomicLongConfig(name);
  for (Node n : childElements(node)) {
    String nodeName = cleanNodeName(n);
    String value = getTextContent(n).trim();
    if ("merge-policy".equals(nodeName)) {
      MergePolicyConfig mergePolicyConfig = createMergePolicyConfig(n);
      atomicLongConfig.setMergePolicyConfig(mergePolicyConfig);
    } else if ("quorum-ref".equals(nodeName)) {
      atomicLongConfig.setQuorumName(value);
    }
  }
  config.addAtomicLongConfig(atomicLongConfig);
}

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

private void handleAtomicLong(Node node) {
  Node attName = node.getAttributes().getNamedItem("name");
  String name = getTextContent(attName);
  AtomicLongConfig atomicLongConfig = new AtomicLongConfig(name);
  for (Node n : childElements(node)) {
    String nodeName = cleanNodeName(n);
    String value = getTextContent(n).trim();
    if ("merge-policy".equals(nodeName)) {
      MergePolicyConfig mergePolicyConfig = createMergePolicyConfig(n);
      atomicLongConfig.setMergePolicyConfig(mergePolicyConfig);
    } else if ("quorum-ref".equals(nodeName)) {
      atomicLongConfig.setQuorumName(value);
    }
  }
  config.addAtomicLongConfig(atomicLongConfig);
}

代码示例来源:origin: hazelcast/hazelcast-code-samples

public static void main(String[] args) {
    MergePolicyConfig mergePolicyConfig = new MergePolicyConfig()
        .setPolicy(ComposedHitsAndCreationTimeMergePolicy.class.getName());

    ReplicatedMapConfig mapConfig = new ReplicatedMapConfig("default")
        .setMergePolicyConfig(mergePolicyConfig);

    AtomicLongConfig atomicLongConfig = new AtomicLongConfig("default")
        .setMergePolicyConfig(mergePolicyConfig);

    Config config = new Config()
        .addReplicatedMapConfig(mapConfig)
        .addAtomicLongConfig(atomicLongConfig);

    try {
      HazelcastInstance hazelcastInstance = Hazelcast.newHazelcastInstance(config);

      // this works, since ReplicatedMap provides hits and creation time
      hazelcastInstance.getReplicatedMap("myReplicatedMap");

      try {
        hazelcastInstance.getAtomicLong("myAtomicLong");
      } catch (InvalidConfigurationException expected) {
        System.out.println("IAtomicLong doesn't provide the required hit statistics: " + expected.getMessage());
      }
    } finally {
      Hazelcast.shutdownAll();
    }
  }
}

相关文章

微信公众号

最新文章

更多

Config类方法