org.elasticsearch.cluster.metadata.MetaData.writeTo()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(4.5k)|赞(0)|评价(0)|浏览(82)

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

MetaData.writeTo介绍

暂无

代码示例

代码示例来源:origin: org.elasticsearch/elasticsearch

@Override
  public void writeTo(StreamOutput out) throws IOException {
    super.writeTo(out);
    if (metaData == null) {
      out.writeBoolean(false);
    } else {
      out.writeBoolean(true);
      metaData.writeTo(out);
    }
  }
}

代码示例来源:origin: org.elasticsearch/elasticsearch

@Override
public void writeTo(StreamOutput out) throws IOException {
  clusterName.writeTo(out);
  out.writeLong(version);
  out.writeString(stateUUID);
  metaData.writeTo(out);
  routingTable.writeTo(out);
  nodes.writeTo(out);
  blocks.writeTo(out);
  // filter out custom states not supported by the other node
  int numberOfCustoms = 0;
  for (final ObjectCursor<Custom> cursor : customs.values()) {
    if (FeatureAware.shouldSerialize(out, cursor.value)) {
      numberOfCustoms++;
    }
  }
  out.writeVInt(numberOfCustoms);
  for (final ObjectCursor<Custom> cursor : customs.values()) {
    if (FeatureAware.shouldSerialize(out, cursor.value)) {
      out.writeNamedWriteable(cursor.value);
    }
  }
}

代码示例来源:origin: com.strapdata.elasticsearch/elasticsearch

@Override
  public void writeTo(StreamOutput out) throws IOException {
    super.writeTo(out);
    if (metaData == null) {
      out.writeBoolean(false);
    } else {
      out.writeBoolean(true);
      metaData.writeTo(out);
    }
  }
}

代码示例来源:origin: apache/servicemix-bundles

@Override
  public void writeTo(StreamOutput out) throws IOException {
    super.writeTo(out);
    if (metaData == null) {
      out.writeBoolean(false);
    } else {
      out.writeBoolean(true);
      metaData.writeTo(out);
    }
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch

@Override
  public void writeTo(StreamOutput out) throws IOException {
    super.writeTo(out);
    if (metaData == null) {
      out.writeBoolean(false);
    } else {
      out.writeBoolean(true);
      metaData.writeTo(out);
    }
  }
}

代码示例来源:origin: harbby/presto-connectors

@Override
  public void writeTo(StreamOutput out) throws IOException {
    super.writeTo(out);
    if (metaData == null) {
      out.writeBoolean(false);
    } else {
      out.writeBoolean(true);
      metaData.writeTo(out);
    }
  }
}

代码示例来源:origin: apache/servicemix-bundles

@Override
public void writeTo(StreamOutput out) throws IOException {
  clusterName.writeTo(out);
  out.writeLong(version);
  out.writeString(stateUUID);
  metaData.writeTo(out);
  routingTable.writeTo(out);
  nodes.writeTo(out);
  blocks.writeTo(out);
  // filter out custom states not supported by the other node
  int numberOfCustoms = 0;
  for (final ObjectCursor<Custom> cursor : customs.values()) {
    if (FeatureAware.shouldSerialize(out, cursor.value)) {
      numberOfCustoms++;
    }
  }
  out.writeVInt(numberOfCustoms);
  for (final ObjectCursor<Custom> cursor : customs.values()) {
    if (FeatureAware.shouldSerialize(out, cursor.value)) {
      out.writeNamedWriteable(cursor.value);
    }
  }
}

代码示例来源:origin: harbby/presto-connectors

@Override
public void writeTo(StreamOutput out) throws IOException {
  clusterName.writeTo(out);
  out.writeLong(version);
  out.writeString(stateUUID);
  metaData.writeTo(out);
  routingTable.writeTo(out);
  nodes.writeTo(out);
  blocks.writeTo(out);
  out.writeVInt(customs.size());
  for (ObjectObjectCursor<String, Custom> cursor : customs) {
    out.writeString(cursor.key);
    cursor.value.writeTo(out);
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.elasticsearch

@Override
public void writeTo(StreamOutput out) throws IOException {
  clusterName.writeTo(out);
  out.writeLong(version);
  out.writeString(stateUUID);
  metaData.writeTo(out);
  routingTable.writeTo(out);
  nodes.writeTo(out);
  blocks.writeTo(out);
  // filter out custom states not supported by the other node
  int numberOfCustoms = 0;
  for (final ObjectCursor<Custom> cursor : customs.values()) {
    if (FeatureAware.shouldSerialize(out, cursor.value)) {
      numberOfCustoms++;
    }
  }
  out.writeVInt(numberOfCustoms);
  for (final ObjectCursor<Custom> cursor : customs.values()) {
    if (FeatureAware.shouldSerialize(out, cursor.value)) {
      out.writeNamedWriteable(cursor.value);
    }
  }
}

代码示例来源:origin: com.strapdata.elasticsearch/elasticsearch

@Override
public void writeTo(StreamOutput out) throws IOException {
  clusterName.writeTo(out);
  out.writeLong(version);
  out.writeString(stateUUID);
  metaData.writeTo(out);
  routingTable.writeTo(out);
  nodes.writeTo(out);
  blocks.writeTo(out);
  // filter out custom states not supported by the other node
  int numberOfCustoms = 0;
  for (ObjectCursor<Custom> cursor : customs.values()) {
    if (out.getVersion().onOrAfter(cursor.value.getMinimalSupportedVersion())) {
      numberOfCustoms++;
    }
  }
  out.writeVInt(numberOfCustoms);
  for (ObjectCursor<Custom> cursor : customs.values()) {
    if (out.getVersion().onOrAfter(cursor.value.getMinimalSupportedVersion())) {
      out.writeNamedWriteable(cursor.value);
    }
  }
}

相关文章

微信公众号

最新文章

更多