Package com.google.bigtable.v2
Interface FullReadStatsViewOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FullReadStatsView
,FullReadStatsView.Builder
public interface FullReadStatsViewOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReadIterationStats
getReadIterationStats()
Iteration stats describe how efficient the read is, e.g.ReadIterationStatsOrBuilder
getReadIterationStatsOrBuilder()
Iteration stats describe how efficient the read is, e.g.RequestLatencyStats
getRequestLatencyStats()
Request latency stats describe the time taken to complete a request, from the server side.RequestLatencyStatsOrBuilder
getRequestLatencyStatsOrBuilder()
Request latency stats describe the time taken to complete a request, from the server side.boolean
hasReadIterationStats()
Iteration stats describe how efficient the read is, e.g.boolean
hasRequestLatencyStats()
Request latency stats describe the time taken to complete a request, from the server side.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasReadIterationStats
boolean hasReadIterationStats()
Iteration stats describe how efficient the read is, e.g. comparing rows seen vs. rows returned or cells seen vs cells returned can provide an indication of read efficiency (the higher the ratio of seen to retuned the better).
.google.bigtable.v2.ReadIterationStats read_iteration_stats = 1;
- Returns:
- Whether the readIterationStats field is set.
-
getReadIterationStats
ReadIterationStats getReadIterationStats()
Iteration stats describe how efficient the read is, e.g. comparing rows seen vs. rows returned or cells seen vs cells returned can provide an indication of read efficiency (the higher the ratio of seen to retuned the better).
.google.bigtable.v2.ReadIterationStats read_iteration_stats = 1;
- Returns:
- The readIterationStats.
-
getReadIterationStatsOrBuilder
ReadIterationStatsOrBuilder getReadIterationStatsOrBuilder()
Iteration stats describe how efficient the read is, e.g. comparing rows seen vs. rows returned or cells seen vs cells returned can provide an indication of read efficiency (the higher the ratio of seen to retuned the better).
.google.bigtable.v2.ReadIterationStats read_iteration_stats = 1;
-
hasRequestLatencyStats
boolean hasRequestLatencyStats()
Request latency stats describe the time taken to complete a request, from the server side.
.google.bigtable.v2.RequestLatencyStats request_latency_stats = 2;
- Returns:
- Whether the requestLatencyStats field is set.
-
getRequestLatencyStats
RequestLatencyStats getRequestLatencyStats()
Request latency stats describe the time taken to complete a request, from the server side.
.google.bigtable.v2.RequestLatencyStats request_latency_stats = 2;
- Returns:
- The requestLatencyStats.
-
getRequestLatencyStatsOrBuilder
RequestLatencyStatsOrBuilder getRequestLatencyStatsOrBuilder()
Request latency stats describe the time taken to complete a request, from the server side.
.google.bigtable.v2.RequestLatencyStats request_latency_stats = 2;
-
-