Package org.eclipse.jetty.io
Class ConnectionStatistics.Stats
- java.lang.Object
-
- org.eclipse.jetty.io.ConnectionStatistics.Stats
-
- All Implemented Interfaces:
Dumpable
- Enclosing class:
- ConnectionStatistics
@Deprecated(since="2021-05-27") public static class ConnectionStatistics.Stats extends java.lang.Object implements Dumpable
Deprecated.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.Dumpable
Dumpable.DumpableContainer
-
-
Constructor Summary
Constructors Constructor Description Stats(java.lang.String name)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
decrementCount()
Deprecated.void
dump(java.lang.Appendable out, java.lang.String indent)
Deprecated.Dump this object (and children) into an Appendable using the provided indent after any new lines.long
getConnectionDurationMax()
Deprecated.double
getConnectionDurationMean()
Deprecated.double
getConnectionDurationStdDev()
Deprecated.long
getConnections()
Deprecated.long
getConnectionsMax()
Deprecated.long
getConnectionsTotal()
Deprecated.java.lang.String
getName()
Deprecated.long
getReceivedBytes()
Deprecated.long
getReceivedBytesRate()
Deprecated.long
getReceivedMessages()
Deprecated.long
getReceivedMessagesRate()
Deprecated.long
getSentBytes()
Deprecated.long
getSentBytesRate()
Deprecated.long
getSentMessages()
Deprecated.long
getSentMessagesRate()
Deprecated.void
incrementCount()
Deprecated.void
recordBytesIn(long bytesIn)
Deprecated.void
recordBytesOut(long bytesOut)
Deprecated.void
recordDuration(long duration)
Deprecated.void
recordMessagesIn(long messagesIn)
Deprecated.void
recordMessagesOut(long messagesOut)
Deprecated.void
reset()
Deprecated.java.lang.String
toString()
Deprecated.
-
-
-
Method Detail
-
reset
public void reset()
Deprecated.
-
getName
public java.lang.String getName()
Deprecated.
-
getReceivedBytes
public long getReceivedBytes()
Deprecated.
-
getReceivedBytesRate
public long getReceivedBytesRate()
Deprecated.
-
getSentBytes
public long getSentBytes()
Deprecated.
-
getSentBytesRate
public long getSentBytesRate()
Deprecated.
-
getConnectionDurationMax
public long getConnectionDurationMax()
Deprecated.
-
getConnectionDurationMean
public double getConnectionDurationMean()
Deprecated.
-
getConnectionDurationStdDev
public double getConnectionDurationStdDev()
Deprecated.
-
getConnectionsTotal
public long getConnectionsTotal()
Deprecated.
-
getConnections
public long getConnections()
Deprecated.
-
getConnectionsMax
public long getConnectionsMax()
Deprecated.
-
getReceivedMessages
public long getReceivedMessages()
Deprecated.
-
getReceivedMessagesRate
public long getReceivedMessagesRate()
Deprecated.
-
getSentMessages
public long getSentMessages()
Deprecated.
-
getSentMessagesRate
public long getSentMessagesRate()
Deprecated.
-
incrementCount
public void incrementCount()
Deprecated.
-
decrementCount
public void decrementCount()
Deprecated.
-
recordDuration
public void recordDuration(long duration)
Deprecated.
-
recordBytesIn
public void recordBytesIn(long bytesIn)
Deprecated.
-
recordBytesOut
public void recordBytesOut(long bytesOut)
Deprecated.
-
recordMessagesIn
public void recordMessagesIn(long messagesIn)
Deprecated.
-
recordMessagesOut
public void recordMessagesOut(long messagesOut)
Deprecated.
-
dump
public void dump(java.lang.Appendable out, java.lang.String indent) throws java.io.IOException
Deprecated.Description copied from interface:Dumpable
Dump this object (and children) into an Appendable using the provided indent after any new lines. The indent should not be applied to the first object dumped.
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toString
in classjava.lang.Object
-
-