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

grpc.cache_client._SortedSetGetRankRequestOrBuilder Maven / Gradle / Ivy

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

package grpc.cache_client;

public interface _SortedSetGetRankRequestOrBuilder extends
    // @@protoc_insertion_point(interface_extends:cache_client._SortedSetGetRankRequest)
    com.google.protobuf.MessageOrBuilder {

  /**
   * bytes set_name = 1;
   * @return The setName.
   */
  com.google.protobuf.ByteString getSetName();

  /**
   * bytes value = 2;
   * @return The value.
   */
  com.google.protobuf.ByteString getValue();

  /**
   * 
   * The order in which sorted set will be sorted to determine the rank.
   *
   * When Order.ASCENDING is specified, will return the rank of the value
   * when sorted set scores are ordered from low to high. This is the default
   * when no Order is specified.
   *
   * When Order.DESCENDING is specified, will return the rank of the value
   * when sorted set scores are ordered from high to low.
   * 
* * .cache_client._SortedSetGetRankRequest.Order order = 3; * @return The enum numeric value on the wire for order. */ int getOrderValue(); /** *
   * The order in which sorted set will be sorted to determine the rank.
   *
   * When Order.ASCENDING is specified, will return the rank of the value
   * when sorted set scores are ordered from low to high. This is the default
   * when no Order is specified.
   *
   * When Order.DESCENDING is specified, will return the rank of the value
   * when sorted set scores are ordered from high to low.
   * 
* * .cache_client._SortedSetGetRankRequest.Order order = 3; * @return The order. */ grpc.cache_client._SortedSetGetRankRequest.Order getOrder(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy