java.io.deephaven.proto.backplane.grpc.CreateInputTableRequestOrBuilder 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 CreateInputTableRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.grpc.CreateInputTableRequest)
com.google.protobuf.MessageOrBuilder {
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
* @return Whether the resultId field is set.
*/
boolean hasResultId();
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
* @return The resultId.
*/
io.deephaven.proto.backplane.grpc.Ticket getResultId();
/**
* .io.deephaven.proto.backplane.grpc.Ticket result_id = 1;
*/
io.deephaven.proto.backplane.grpc.TicketOrBuilder getResultIdOrBuilder();
/**
*
* Optional, either this or schema must be specified, not both.
*
*
* .io.deephaven.proto.backplane.grpc.TableReference source_table_id = 2;
* @return Whether the sourceTableId field is set.
*/
boolean hasSourceTableId();
/**
*
* Optional, either this or schema must be specified, not both.
*
*
* .io.deephaven.proto.backplane.grpc.TableReference source_table_id = 2;
* @return The sourceTableId.
*/
io.deephaven.proto.backplane.grpc.TableReference getSourceTableId();
/**
*
* Optional, either this or schema must be specified, not both.
*
*
* .io.deephaven.proto.backplane.grpc.TableReference source_table_id = 2;
*/
io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder getSourceTableIdOrBuilder();
/**
*
* Schema as described in Arrow Message.fbs::Message. Optional, either this or source_table_id must be specified.
*
*
* bytes schema = 3;
* @return Whether the schema field is set.
*/
boolean hasSchema();
/**
*
* Schema as described in Arrow Message.fbs::Message. Optional, either this or source_table_id must be specified.
*
*
* bytes schema = 3;
* @return The schema.
*/
com.google.protobuf.ByteString getSchema();
/**
*
* Specifies what type of input table to create.
*
*
* .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind kind = 4;
* @return Whether the kind field is set.
*/
boolean hasKind();
/**
*
* Specifies what type of input table to create.
*
*
* .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind kind = 4;
* @return The kind.
*/
io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind getKind();
/**
*
* Specifies what type of input table to create.
*
*
* .io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKind kind = 4;
*/
io.deephaven.proto.backplane.grpc.CreateInputTableRequest.InputTableKindOrBuilder getKindOrBuilder();
io.deephaven.proto.backplane.grpc.CreateInputTableRequest.DefinitionCase getDefinitionCase();
}