Package io.netty.handler.codec.quic
Interface QuicConnectionStats
- 
 public interface QuicConnectionStatsStatistics about theQUICconnection. If unknown by the implementation it might return-1values for the various methods.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description longlost()longlostBytes()longpathsCount()longrecv()longrecvBytes()longretrans()longsent()longsentBytes()longstreamRetransBytes()
 
- 
- 
- 
Method Detail- 
recvlong recv() - Returns:
- The number of QUIC packets received on the connection.
 
 - 
sentlong sent() - Returns:
- The number of QUIC packets sent on this connection.
 
 - 
lostlong lost() - Returns:
- The number of QUIC packets that were lost.
 
 - 
retranslong retrans() - Returns:
- The number of sent QUIC packets with retransmitted data.
 
 - 
sentByteslong sentBytes() - Returns:
- The number of sent bytes.
 
 - 
recvByteslong recvBytes() - Returns:
- The number of received bytes.
 
 - 
lostByteslong lostBytes() - Returns:
- The number of bytes lost.
 
 - 
streamRetransByteslong streamRetransBytes() - Returns:
- The number of stream bytes retransmitted.
 
 - 
pathsCountlong pathsCount() - Returns:
- The number of known paths for the connection.
 
 
- 
 
-