Package ai.blip.deckard
Interface MessageDiagnosticsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MessageDiagnostics,MessageDiagnostics.Builder
public interface MessageDiagnosticsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetAcks()Track total number of ACKslonggetConsecutiveAcks()Track number of consecutive ACKs This field will reset to 0 when a NACK is receivedlonggetConsecutiveNacks()Track number of consecutive NACKs This field will reset to 0 when an ACK is receivedlonggetNacks()Track total number of NACKs-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAcks
long getAcks()
Track total number of ACKs
int64 acks = 1;- Returns:
- The acks.
-
getNacks
long getNacks()
Track total number of NACKs
int64 nacks = 2;- Returns:
- The nacks.
-
getConsecutiveAcks
long getConsecutiveAcks()
Track number of consecutive ACKs This field will reset to 0 when a NACK is received
int64 consecutive_acks = 3;- Returns:
- The consecutiveAcks.
-
getConsecutiveNacks
long getConsecutiveNacks()
Track number of consecutive NACKs This field will reset to 0 when an ACK is received
int64 consecutive_nacks = 4;- Returns:
- The consecutiveNacks.
-
-