grpc.cache_client._SortedSetGetRankRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-protos Show documentation
Show all versions of client-protos Show documentation
Java protobuf protocols that define the Momento gRPC wire format
// 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();
}