io.milvus.grpc.NodeInfoOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of milvus-sdk-java Show documentation
Show all versions of milvus-sdk-java Show documentation
Java SDK for Milvus, a distributed high-performance vector database.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: common.proto
package io.milvus.grpc;
public interface NodeInfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:milvus.proto.common.NodeInfo)
com.google.protobuf.MessageOrBuilder {
/**
* int64 node_id = 1;
* @return The nodeId.
*/
long getNodeId();
/**
* string address = 2;
* @return The address.
*/
java.lang.String getAddress();
/**
* string address = 2;
* @return The bytes for address.
*/
com.google.protobuf.ByteString
getAddressBytes();
/**
* string hostname = 3;
* @return The hostname.
*/
java.lang.String getHostname();
/**
* string hostname = 3;
* @return The bytes for hostname.
*/
com.google.protobuf.ByteString
getHostnameBytes();
}