Interface ReadRowsResponseOrBuilder (2.11.2)

public interface ReadRowsResponseOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getChunks(int index)

public abstract ReadRowsResponse.CellChunk getChunks(int index)

A collection of a row's contents as part of the read request.

repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;

Parameter
NameDescription
indexint
Returns
TypeDescription
ReadRowsResponse.CellChunk

getChunksCount()

public abstract int getChunksCount()

A collection of a row's contents as part of the read request.

repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;

Returns
TypeDescription
int

getChunksList()

public abstract List<ReadRowsResponse.CellChunk> getChunksList()

A collection of a row's contents as part of the read request.

repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;

Returns
TypeDescription
List<CellChunk>

getChunksOrBuilder(int index)

public abstract ReadRowsResponse.CellChunkOrBuilder getChunksOrBuilder(int index)

A collection of a row's contents as part of the read request.

repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;

Parameter
NameDescription
indexint
Returns
TypeDescription
ReadRowsResponse.CellChunkOrBuilder

getChunksOrBuilderList()

public abstract List<? extends ReadRowsResponse.CellChunkOrBuilder> getChunksOrBuilderList()

A collection of a row's contents as part of the read request.

repeated .google.bigtable.v2.ReadRowsResponse.CellChunk chunks = 1;

Returns
TypeDescription
List<? extends com.google.bigtable.v2.ReadRowsResponse.CellChunkOrBuilder>

getLastScannedRowKey()

public abstract ByteString getLastScannedRowKey()

Optionally the server might return the row key of the last row it has scanned. The client can use this to construct a more efficient retry request if needed: any row keys or portions of ranges less than this row key can be dropped from the request. This is primarily useful for cases where the server has read a lot of data that was filtered out since the last committed row key, allowing the client to skip that work on a retry.

bytes last_scanned_row_key = 2;

Returns
TypeDescription
ByteString

The lastScannedRowKey.