Package org.eclipse.jetty.io
Class IncludeExcludeConnectionStatistics
- java.lang.Object
-
- org.eclipse.jetty.util.component.AbstractLifeCycle
-
- org.eclipse.jetty.io.ConnectionStatistics
-
- org.eclipse.jetty.io.IncludeExcludeConnectionStatistics
-
- All Implemented Interfaces:
Connection.Listener
,Dumpable
,LifeCycle
@Deprecated(since="2021-05-27") public class IncludeExcludeConnectionStatistics extends ConnectionStatistics
Deprecated.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
IncludeExcludeConnectionStatistics.ConnectionSet
Deprecated.-
Nested classes/interfaces inherited from class org.eclipse.jetty.io.ConnectionStatistics
ConnectionStatistics.Stats
-
Nested classes/interfaces inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
AbstractLifeCycle.AbstractLifeCycleListener
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.io.Connection.Listener
Connection.Listener.Adapter
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.Dumpable
Dumpable.DumpableContainer
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.LifeCycle
LifeCycle.Listener
-
-
Constructor Summary
Constructors Constructor Description IncludeExcludeConnectionStatistics()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
exclude(java.lang.Class<? extends Connection> clazz)
Deprecated.void
exclude(java.lang.String className)
Deprecated.void
include(java.lang.Class<? extends Connection> clazz)
Deprecated.void
include(java.lang.String className)
Deprecated.void
onClosed(Connection connection)
Deprecated.void
onOpened(Connection connection)
Deprecated.-
Methods inherited from class org.eclipse.jetty.io.ConnectionStatistics
dump, getConnectionDurationMax, getConnectionDurationMean, getConnectionDurationStdDev, getConnections, getConnectionsMax, getConnectionStatisticsGroups, getConnectionsTotal, getReceivedBytes, getReceivedBytesRate, getReceivedMessages, getReceivedMessagesRate, getSentBytes, getSentBytesRate, getSentMessages, getSentMessagesRate, reset, toString
-
Methods inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
addLifeCycleListener, getState, getState, getStopTimeout, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, setStopTimeout, start, stop
-
-
-
-
Method Detail
-
include
public void include(java.lang.String className) throws java.lang.ClassNotFoundException
Deprecated.- Throws:
java.lang.ClassNotFoundException
-
include
public void include(java.lang.Class<? extends Connection> clazz)
Deprecated.
-
exclude
public void exclude(java.lang.String className) throws java.lang.ClassNotFoundException
Deprecated.- Throws:
java.lang.ClassNotFoundException
-
exclude
public void exclude(java.lang.Class<? extends Connection> clazz)
Deprecated.
-
onOpened
public void onOpened(Connection connection)
Deprecated.- Specified by:
onOpened
in interfaceConnection.Listener
- Overrides:
onOpened
in classConnectionStatistics
-
onClosed
public void onClosed(Connection connection)
Deprecated.- Specified by:
onClosed
in interfaceConnection.Listener
- Overrides:
onClosed
in classConnectionStatistics
-
-