All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.helidon.config.etcd.internal.client.proto.RangeResponseOrBuilder Maven / Gradle / Ivy

There is a newer version: 4.1.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: rpc.proto

package io.helidon.config.etcd.internal.client.proto;

public interface RangeResponseOrBuilder extends
    // @@protoc_insertion_point(interface_extends:etcdserverpb.RangeResponse)
    com.google.protobuf.MessageOrBuilder {

  /**
   * .etcdserverpb.ResponseHeader header = 1;
   * @return Whether the header field is set.
   */
  boolean hasHeader();
  /**
   * .etcdserverpb.ResponseHeader header = 1;
   * @return The header.
   */
  io.helidon.config.etcd.internal.client.proto.ResponseHeader getHeader();
  /**
   * .etcdserverpb.ResponseHeader header = 1;
   */
  io.helidon.config.etcd.internal.client.proto.ResponseHeaderOrBuilder getHeaderOrBuilder();

  /**
   * 
   * kvs is the list of key-value pairs matched by the range request.
   * kvs is empty when count is requested.
   * 
* * repeated .mvccpb.KeyValue kvs = 2; */ java.util.List getKvsList(); /** *
   * kvs is the list of key-value pairs matched by the range request.
   * kvs is empty when count is requested.
   * 
* * repeated .mvccpb.KeyValue kvs = 2; */ io.helidon.config.etcd.internal.client.proto.KeyValue getKvs(int index); /** *
   * kvs is the list of key-value pairs matched by the range request.
   * kvs is empty when count is requested.
   * 
* * repeated .mvccpb.KeyValue kvs = 2; */ int getKvsCount(); /** *
   * kvs is the list of key-value pairs matched by the range request.
   * kvs is empty when count is requested.
   * 
* * repeated .mvccpb.KeyValue kvs = 2; */ java.util.List getKvsOrBuilderList(); /** *
   * kvs is the list of key-value pairs matched by the range request.
   * kvs is empty when count is requested.
   * 
* * repeated .mvccpb.KeyValue kvs = 2; */ io.helidon.config.etcd.internal.client.proto.KeyValueOrBuilder getKvsOrBuilder( int index); /** *
   * more indicates if there are more keys to return in the requested range.
   * 
* * bool more = 3; * @return The more. */ boolean getMore(); /** *
   * count is set to the number of keys within the range when requested.
   * 
* * int64 count = 4; * @return The count. */ long getCount(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy