java.io.deephaven.proto.backplane.grpc.PartitionByRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-proto-backplane-grpc Show documentation
Show all versions of deephaven-proto-backplane-grpc Show documentation
The Deephaven proto-backplane-grpc
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: deephaven/proto/partitionedtable.proto
// Protobuf Java Version: 3.25.3
package io.deephaven.proto.backplane.grpc;
public interface PartitionByRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.grpc.PartitionByRequest)
com.google.protobuf.MessageOrBuilder {
/**
* .io.deephaven.proto.backplane.grpc.Ticket table_id = 1;
* @return Whether the tableId field is set.
*/
boolean hasTableId();
/**
* .io.deephaven.proto.backplane.grpc.Ticket table_id = 1;
* @return The tableId.
*/
io.deephaven.proto.backplane.grpc.Ticket getTableId();
/**
* .io.deephaven.proto.backplane.grpc.Ticket table_id = 1;
*/
io.deephaven.proto.backplane.grpc.TicketOrBuilder getTableIdOrBuilder();
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 2;
* @return Whether the resultId field is set.
*/
boolean hasResultId();
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 2;
* @return The resultId.
*/
io.deephaven.proto.backplane.grpc.Ticket getResultId();
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 2;
*/
io.deephaven.proto.backplane.grpc.TicketOrBuilder getResultIdOrBuilder();
/**
* repeated string key_column_names = 3;
* @return A list containing the keyColumnNames.
*/
java.util.List
getKeyColumnNamesList();
/**
* repeated string key_column_names = 3;
* @return The count of keyColumnNames.
*/
int getKeyColumnNamesCount();
/**
* repeated string key_column_names = 3;
* @param index The index of the element to return.
* @return The keyColumnNames at the given index.
*/
java.lang.String getKeyColumnNames(int index);
/**
* repeated string key_column_names = 3;
* @param index The index of the value to return.
* @return The bytes of the keyColumnNames at the given index.
*/
com.google.protobuf.ByteString
getKeyColumnNamesBytes(int index);
/**
* bool drop_keys = 4;
* @return The dropKeys.
*/
boolean getDropKeys();
}