Package org.eclipse.jetty.io
Interface Connection.Listener
-
- All Known Implementing Classes:
Connection.Listener.Adapter,ConnectionLimit,ConnectionStatistics,ConnectorStatistics,DebugHandler,IncludeExcludeConnectionStatistics,ServerConnectionStatistics,SocketCustomizationListener
- Enclosing interface:
- Connection
@Deprecated(since="2021-05-27") public static interface Connection.ListenerDeprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.A Listener for connection events.
Listeners can be added to a
Connectionto get open and close events. The AbstractConnectionFactory implements a pattern where objects implement this interface that have been added viaContainer.addBean(Object)to the Connector or ConnectionFactory are added as listeners to all new connections
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classConnection.Listener.AdapterDeprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidonClosed(Connection connection)Deprecated.voidonOpened(Connection connection)Deprecated.
-
-
-
Method Detail
-
onOpened
void onOpened(Connection connection)
Deprecated.
-
onClosed
void onClosed(Connection connection)
Deprecated.
-
-