grpc.leaderboard._RemoveElementsRequestOrBuilder 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: leaderboard.proto
package grpc.leaderboard;
public interface _RemoveElementsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:leaderboard._RemoveElementsRequest)
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();
/**
*
* You can have up to 8192 ids in this list.
*
*
* repeated uint32 ids = 3;
* @return A list containing the ids.
*/
java.util.List getIdsList();
/**
*
* You can have up to 8192 ids in this list.
*
*
* repeated uint32 ids = 3;
* @return The count of ids.
*/
int getIdsCount();
/**
*
* You can have up to 8192 ids in this list.
*
*
* repeated uint32 ids = 3;
* @param index The index of the element to return.
* @return The ids at the given index.
*/
int getIds(int index);
}