Package org.eclipse.jetty.io
Interface Connection.Listener
-
- All Known Implementing Classes:
Connection.Listener.Adapter
,ConnectionLimit
,ConnectionStatistics
,ConnectorStatistics
,DebugHandler
,IncludeExcludeConnectionStatistics
,ServerConnectionStatistics
,SocketCustomizationListener
,WebSocketSession
- Enclosing interface:
- Connection
@Deprecated(since="2021-05-27") public static interface Connection.Listener
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.A Listener for connection events.
Listeners can be added to a
Connection
to 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 class
Connection.Listener.Adapter
Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
onClosed(Connection connection)
Deprecated.void
onOpened(Connection connection)
Deprecated.
-
-
-
Method Detail
-
onOpened
void onOpened(Connection connection)
Deprecated.
-
onClosed
void onClosed(Connection connection)
Deprecated.
-
-