Package io.grpc.benchmarks.proto
Interface Stats.HistogramDataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Stats.HistogramData,Stats.HistogramData.Builder
- Enclosing class:
- Stats
public static interface Stats.HistogramDataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetBucket(int index)repeated uint32 bucket = 1;intgetBucketCount()repeated uint32 bucket = 1;java.util.List<java.lang.Integer>getBucketList()repeated uint32 bucket = 1;doublegetCount()double count = 6;doublegetMaxSeen()double max_seen = 3;doublegetMinSeen()double min_seen = 2;doublegetSum()double sum = 4;doublegetSumOfSquares()double sum_of_squares = 5;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getBucketList
java.util.List<java.lang.Integer> getBucketList()
repeated uint32 bucket = 1;- Returns:
- A list containing the bucket.
-
getBucketCount
int getBucketCount()
repeated uint32 bucket = 1;- Returns:
- The count of bucket.
-
getBucket
int getBucket(int index)
repeated uint32 bucket = 1;- Parameters:
index- The index of the element to return.- Returns:
- The bucket at the given index.
-
getMinSeen
double getMinSeen()
double min_seen = 2;- Returns:
- The minSeen.
-
getMaxSeen
double getMaxSeen()
double max_seen = 3;- Returns:
- The maxSeen.
-
getSum
double getSum()
double sum = 4;- Returns:
- The sum.
-
getSumOfSquares
double getSumOfSquares()
double sum_of_squares = 5;- Returns:
- The sumOfSquares.
-
getCount
double getCount()
double count = 6;- Returns:
- The count.
-
-