java.io.deephaven.proto.backplane.grpc.MergeRequestOrBuilder 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 MergeRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.grpc.MergeRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The ticket for the PartitionedTable object to merge.
*
*
* .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 merge.
*
*
* .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 merge.
*
*
* .io.deephaven.proto.backplane.grpc.Ticket partitioned_table = 1;
*/
io.deephaven.proto.backplane.grpc.TicketOrBuilder getPartitionedTableOrBuilder();
/**
*
* The ticket to use to hold the results of the merge operation.
*
*
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 2;
* @return Whether the resultId field is set.
*/
boolean hasResultId();
/**
*
* The ticket to use to hold the results of the merge operation.
*
*
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 2;
* @return The resultId.
*/
io.deephaven.proto.backplane.grpc.Ticket getResultId();
/**
*
* The ticket to use to hold the results of the merge operation.
*
*
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 2;
*/
io.deephaven.proto.backplane.grpc.TicketOrBuilder getResultIdOrBuilder();
}