java.io.deephaven.proto.backplane.grpc.GetTableRequestOrBuilder 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 GetTableRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.grpc.GetTableRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The ticket for the PartitionedTable object to query.
*
*
* .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1;
* @return Whether the partitionedTable field is set.
*/
boolean hasPartitionedTable();
/**
*
* The ticket for the PartitionedTable object to query.
*
*
* .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1;
* @return The partitionedTable.
*/
io.deephaven.proto.backplane.grpc.Ticket getPartitionedTable();
/**
*
* The ticket for the PartitionedTable object to query.
*
*
* .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1;
*/
io.deephaven.proto.backplane.grpc.TicketOrBuilder getPartitionedTableOrBuilder();
/**
*
* The ticket for the table containing the key to fetch from the partitioned table.
*
*
* .io.deephaven.proto.backplane.grpc.Ticket key_table_ticket = 2;
* @return Whether the keyTableTicket field is set.
*/
boolean hasKeyTableTicket();
/**
*
* The ticket for the table containing the key to fetch from the partitioned table.
*
*
* .io.deephaven.proto.backplane.grpc.Ticket key_table_ticket = 2;
* @return The keyTableTicket.
*/
io.deephaven.proto.backplane.grpc.Ticket getKeyTableTicket();
/**
*
* The ticket for the table containing the key to fetch from the partitioned table.
*
*
* .io.deephaven.proto.backplane.grpc.Ticket key_table_ticket = 2;
*/
io.deephaven.proto.backplane.grpc.TicketOrBuilder getKeyTableTicketOrBuilder();
/**
*
* The ticket to use to hold the newly returned table.
*
*
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 4;
* @return Whether the resultId field is set.
*/
boolean hasResultId();
/**
*
* The ticket to use to hold the newly returned table.
*
*
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 4;
* @return The resultId.
*/
io.deephaven.proto.backplane.grpc.Ticket getResultId();
/**
*
* The ticket to use to hold the newly returned table.
*
*
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 4;
*/
io.deephaven.proto.backplane.grpc.TicketOrBuilder getResultIdOrBuilder();
}