Interface ReceiverDProto.SamplesStatisticsOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ReceiverDProto.SamplesStatistics
,ReceiverDProto.SamplesStatistics.Builder
- Enclosing class:
- ReceiverDProto
public static interface ReceiverDProto.SamplesStatisticsOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionlong
Number of other errors.long
Number of sample read attempts.long
getStale()
Number of attempts which failed due to deadline passed.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 Details
-
getReadAttempts
long getReadAttempts()Number of sample read attempts. Subtract the errors below to get successful attempts.
uint64 read_attempts = 1;
- Returns:
- The readAttempts.
-
getStale
long getStale()Number of attempts which failed due to deadline passed. Signifies too high load.
uint64 stale = 2;
- Returns:
- The stale.
-
getOtherError
long getOtherError()Number of other errors. Might signify hardware/software incompatibilities.
uint64 other_error = 3;
- Returns:
- The otherError.
-