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

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

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

Config.addFlakeIdGeneratorConfig介绍

[英]Adds a flake ID generator configuration. The configuration is saved under the config name, which may be a pattern with which the configuration will be obtained in the future.
[中]添加薄片ID生成器配置。配置保存在配置名称下,该名称可能是将来获取配置的模式。

代码示例

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

private void handleFlakeIdGenerator(Node node) {
  String name = getAttribute(node, "name");
  FlakeIdGeneratorConfig generatorConfig = new FlakeIdGeneratorConfig(name);
  for (Node child : childElements(node)) {
    String nodeName = cleanNodeName(child);
    String value = getTextContent(child).trim();
    if ("prefetch-count".equals(nodeName)) {
      generatorConfig.setPrefetchCount(Integer.parseInt(value));
    } else if ("prefetch-validity-millis".equalsIgnoreCase(nodeName)) {
      generatorConfig.setPrefetchValidityMillis(Long.parseLong(value));
    } else if ("id-offset".equalsIgnoreCase(nodeName)) {
      generatorConfig.setIdOffset(Long.parseLong(value));
    } else if ("node-id-offset".equalsIgnoreCase(nodeName)) {
      generatorConfig.setNodeIdOffset(Long.parseLong(value));
    } else if ("statistics-enabled".equals(nodeName)) {
      generatorConfig.setStatisticsEnabled(getBooleanValue(value));
    }
  }
  config.addFlakeIdGeneratorConfig(generatorConfig);
}

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

private void handleFlakeIdGenerator(Node node) {
  String name = getAttribute(node, "name");
  FlakeIdGeneratorConfig generatorConfig = new FlakeIdGeneratorConfig(name);
  for (Node child : childElements(node)) {
    String nodeName = cleanNodeName(child);
    String value = getTextContent(child).trim();
    if ("prefetch-count".equals(nodeName)) {
      generatorConfig.setPrefetchCount(Integer.parseInt(value));
    } else if ("prefetch-validity-millis".equalsIgnoreCase(nodeName)) {
      generatorConfig.setPrefetchValidityMillis(Long.parseLong(value));
    } else if ("id-offset".equalsIgnoreCase(nodeName)) {
      generatorConfig.setIdOffset(Long.parseLong(value));
    } else if ("node-id-offset".equalsIgnoreCase(nodeName)) {
      generatorConfig.setNodeIdOffset(Long.parseLong(value));
    } else if ("statistics-enabled".equals(nodeName)) {
      generatorConfig.setStatisticsEnabled(getBooleanValue(value));
    }
  }
  config.addFlakeIdGeneratorConfig(generatorConfig);
}

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

System.out.println("Don't forget to add the idOffset to static configurations so that the value is preserved "
    + "on cluster restart!");
instance.getConfig().addFlakeIdGeneratorConfig(new FlakeIdGeneratorConfig(GENERATOR_NAME)
    .setIdOffset(idOffset));

相关文章

微信公众号

最新文章

更多

Config类方法