Interface SampleRowKeysResponseOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
SampleRowKeysResponse, SampleRowKeysResponse.Builder

public interface SampleRowKeysResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    Approximate total storage space used by all rows in the table which precede `row_key`.
    com.google.protobuf.ByteString
    Sorted streamed sequence of sample row keys in the table.

    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

    • getRowKey

      com.google.protobuf.ByteString getRowKey()
       Sorted streamed sequence of sample row keys in the table. The table might
       have contents before the first row key in the list and after the last one,
       but a key containing the empty string indicates "end of table" and will be
       the last response given, if present.
       Note that row keys in this list may not have ever been written to or read
       from, and users should therefore not make any assumptions about the row key
       structure that are specific to their use case.
       
      bytes row_key = 1;
      Returns:
      The rowKey.
    • getOffsetBytes

      long getOffsetBytes()
       Approximate total storage space used by all rows in the table which precede
       `row_key`. Buffering the contents of all rows between two subsequent
       samples would require space roughly equal to the difference in their
       `offset_bytes` fields.
       
      int64 offset_bytes = 2;
      Returns:
      The offsetBytes.