Package com.google.bigtable.v2
Interface ReadIterationStatsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ReadIterationStats
,ReadIterationStats.Builder
public interface ReadIterationStatsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getCellsReturnedCount()
The cells returned as part of the request.long
getCellsSeenCount()
The cells seen (scanned) as part of the request.long
getRowsReturnedCount()
The rows returned as part of the request.long
getRowsSeenCount()
The rows seen (scanned) as part of the request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getRowsSeenCount
long getRowsSeenCount()
The rows seen (scanned) as part of the request. This includes the count of rows returned, as captured below.
int64 rows_seen_count = 1;
- Returns:
- The rowsSeenCount.
-
getRowsReturnedCount
long getRowsReturnedCount()
The rows returned as part of the request.
int64 rows_returned_count = 2;
- Returns:
- The rowsReturnedCount.
-
getCellsSeenCount
long getCellsSeenCount()
The cells seen (scanned) as part of the request. This includes the count of cells returned, as captured below.
int64 cells_seen_count = 3;
- Returns:
- The cellsSeenCount.
-
getCellsReturnedCount
long getCellsReturnedCount()
The cells returned as part of the request.
int64 cells_returned_count = 4;
- Returns:
- The cellsReturnedCount.
-
-