Interface ReadRowsRequestOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      long getOffset()
      The offset requested must be less than the last row read from Read.
      String getReadStream()
      Required.
      com.google.protobuf.ByteString getReadStreamBytes()
      Required.
      • 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 Detail

      • getReadStream

        String getReadStream()
         Required. Stream to read rows from.
         
        string read_stream = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
        Returns:
        The readStream.
      • getReadStreamBytes

        com.google.protobuf.ByteString getReadStreamBytes()
         Required. Stream to read rows from.
         
        string read_stream = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
        Returns:
        The bytes for readStream.
      • getOffset

        long getOffset()
         The offset requested must be less than the last row read from Read.
         Requesting a larger offset is undefined. If not specified, start reading
         from offset zero.
         
        int64 offset = 2;
        Returns:
        The offset.