Interface ExportedTableCreationResponseOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExportedTableCreationResponse
,ExportedTableCreationResponse.Builder
public interface ExportedTableCreationResponseOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionIf this is part of a batch, this errorInfo will be the message providedcom.google.protobuf.ByteString
If this is part of a batch, this errorInfo will be the message providedboolean
Whether or not this table might change..io.deephaven.proto.backplane.grpc.TableReference result_id = 1;
.io.deephaven.proto.backplane.grpc.TableReference result_id = 1;
com.google.protobuf.ByteString
Schema as described in Arrow Message.fbs::Message.long
getSize()
The current number of rows for this table.boolean
If this is part of a batch, you may receive creation messages that indicate the sub-operation failed.boolean
.io.deephaven.proto.backplane.grpc.TableReference result_id = 1;
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasResultId
boolean hasResultId().io.deephaven.proto.backplane.grpc.TableReference result_id = 1;
- Returns:
- Whether the resultId field is set.
-
getResultId
TableReference getResultId().io.deephaven.proto.backplane.grpc.TableReference result_id = 1;
- Returns:
- The resultId.
-
getResultIdOrBuilder
TableReferenceOrBuilder getResultIdOrBuilder().io.deephaven.proto.backplane.grpc.TableReference result_id = 1;
-
getSuccess
boolean getSuccess()If this is part of a batch, you may receive creation messages that indicate the sub-operation failed.
bool success = 2;
- Returns:
- The success.
-
getErrorInfo
String getErrorInfo()If this is part of a batch, this errorInfo will be the message provided
string error_info = 3;
- Returns:
- The errorInfo.
-
getErrorInfoBytes
com.google.protobuf.ByteString getErrorInfoBytes()If this is part of a batch, this errorInfo will be the message provided
string error_info = 3;
- Returns:
- The bytes for errorInfo.
-
getSchemaHeader
com.google.protobuf.ByteString getSchemaHeader()Schema as described in Arrow Message.fbs::Message.
bytes schema_header = 4;
- Returns:
- The schemaHeader.
-
getIsStatic
boolean getIsStatic()Whether or not this table might change.
bool is_static = 5;
- Returns:
- The isStatic.
-
getSize
long getSize()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];
- Returns:
- The size.
-