grpc.leaderboard._GetByScoreRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-protos-jvm Show documentation
Show all versions of client-protos-jvm Show documentation
Kotlin protobuf protocols for the JVM that define the Momento gRPC wire format
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: leaderboard.proto
package grpc.leaderboard;
public interface _GetByScoreRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:leaderboard._GetByScoreRequest)
com.google.protobuf.MessageOrBuilder {
/**
* string cache_name = 1;
* @return The cacheName.
*/
java.lang.String getCacheName();
/**
* string cache_name = 1;
* @return The bytes for cacheName.
*/
com.google.protobuf.ByteString
getCacheNameBytes();
/**
* string leaderboard = 2;
* @return The leaderboard.
*/
java.lang.String getLeaderboard();
/**
* string leaderboard = 2;
* @return The bytes for leaderboard.
*/
com.google.protobuf.ByteString
getLeaderboardBytes();
/**
* .leaderboard._ScoreRange score_range = 3;
* @return Whether the scoreRange field is set.
*/
boolean hasScoreRange();
/**
* .leaderboard._ScoreRange score_range = 3;
* @return The scoreRange.
*/
grpc.leaderboard._ScoreRange getScoreRange();
/**
* .leaderboard._ScoreRange score_range = 3;
*/
grpc.leaderboard._ScoreRangeOrBuilder getScoreRangeOrBuilder();
/**
*
* Where should we start returning scores from in the elements within this range?
*
*
* uint32 offset = 4;
* @return The offset.
*/
int getOffset();
/**
*
* How many elements should we limit to returning? (8192 max)
*
*
* uint32 limit_elements = 5;
* @return The limitElements.
*/
int getLimitElements();
/**
* .leaderboard._Order order = 6;
* @return The enum numeric value on the wire for order.
*/
int getOrderValue();
/**
* .leaderboard._Order order = 6;
* @return The order.
*/
grpc.leaderboard._Order getOrder();
}