java.io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder 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
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: deephaven/proto/table.proto
// Protobuf Java Version: 3.25.3
package io.deephaven.proto.backplane.grpc;
public interface TableReferenceOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.grpc.TableReference)
com.google.protobuf.MessageOrBuilder {
/**
*
* an exported ticket
*
*
* .io.deephaven.proto.backplane.grpc.Ticket ticket = 1;
* @return Whether the ticket field is set.
*/
boolean hasTicket();
/**
*
* an exported ticket
*
*
* .io.deephaven.proto.backplane.grpc.Ticket ticket = 1;
* @return The ticket.
*/
io.deephaven.proto.backplane.grpc.Ticket getTicket();
/**
*
* an exported ticket
*
*
* .io.deephaven.proto.backplane.grpc.Ticket ticket = 1;
*/
io.deephaven.proto.backplane.grpc.TicketOrBuilder getTicketOrBuilder();
/**
*
* an offset into a BatchRequest -- used to reference a result that will not be exported
*
*
* sint32 batch_offset = 2;
* @return Whether the batchOffset field is set.
*/
boolean hasBatchOffset();
/**
*
* an offset into a BatchRequest -- used to reference a result that will not be exported
*
*
* sint32 batch_offset = 2;
* @return The batchOffset.
*/
int getBatchOffset();
io.deephaven.proto.backplane.grpc.TableReference.RefCase getRefCase();
}