java.io.deephaven.proto.backplane.grpc.ExportedTableCreationResponseOrBuilder 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 ExportedTableCreationResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.grpc.ExportedTableCreationResponse)
com.google.protobuf.MessageOrBuilder {
/**
* .io.deephaven.proto.backplane.grpc.TableReference result_id = 1;
* @return Whether the resultId field is set.
*/
boolean hasResultId();
/**
* .io.deephaven.proto.backplane.grpc.TableReference result_id = 1;
* @return The resultId.
*/
io.deephaven.proto.backplane.grpc.TableReference getResultId();
/**
* .io.deephaven.proto.backplane.grpc.TableReference result_id = 1;
*/
io.deephaven.proto.backplane.grpc.TableReferenceOrBuilder getResultIdOrBuilder();
/**
*
* If this is part of a batch, you may receive creation messages that indicate the sub-operation failed.
*
*
* bool success = 2;
* @return The success.
*/
boolean getSuccess();
/**
*
* If this is part of a batch, this errorInfo will be the message provided
*
*
* string error_info = 3;
* @return The errorInfo.
*/
java.lang.String getErrorInfo();
/**
*
* If this is part of a batch, this errorInfo will be the message provided
*
*
* string error_info = 3;
* @return The bytes for errorInfo.
*/
com.google.protobuf.ByteString
getErrorInfoBytes();
/**
*
* Schema as described in Arrow Message.fbs::Message.
*
*
* bytes schema_header = 4;
* @return The schemaHeader.
*/
com.google.protobuf.ByteString getSchemaHeader();
/**
*
* Whether or not this table might change.
*
*
* bool is_static = 5;
* @return The isStatic.
*/
boolean getIsStatic();
/**
*
* The current number of rows for this table. If this is negative, the table isn't coalesced, meaning the
* size isn't known without scanning partitions. Typically, the client should filter the data by the
* partitioning columns first.
*
*
* sint64 size = 6 [jstype = JS_STRING];
* @return The size.
*/
long getSize();
}