-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #5122 - add specialized Connection.Listener for WebSocket Conne…
…ctionStatistics Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
- Loading branch information
1 parent
f416d87
commit be429f0
Showing
3 changed files
with
69 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
.../src/main/java/org/eclipse/jetty/websocket/common/util/WebSocketConnectionStatistics.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// | ||
// ======================================================================== | ||
// Copyright (c) 1995-2020 Mort Bay Consulting Pty Ltd and others. | ||
// ------------------------------------------------------------------------ | ||
// All rights reserved. This program and the accompanying materials | ||
// are made available under the terms of the Eclipse Public License v1.0 | ||
// and Apache License v2.0 which accompanies this distribution. | ||
// | ||
// The Eclipse Public License is available at | ||
// http://www.eclipse.org/legal/epl-v10.html | ||
// | ||
// The Apache License v2.0 is available at | ||
// http://www.opensource.org/licenses/apache2.0.php | ||
// | ||
// You may elect to redistribute this code under either of these licenses. | ||
// ======================================================================== | ||
// | ||
|
||
package org.eclipse.jetty.websocket.common.util; | ||
|
||
import org.eclipse.jetty.io.Connection; | ||
import org.eclipse.jetty.io.ConnectionStatistics; | ||
import org.eclipse.jetty.websocket.common.io.AbstractWebSocketConnection; | ||
|
||
public class WebSocketConnectionStatistics extends ConnectionStatistics | ||
{ | ||
@Override | ||
public void onOpened(Connection connection) | ||
{ | ||
if (connection instanceof AbstractWebSocketConnection) | ||
super.onOpened(connection); | ||
} | ||
|
||
@Override | ||
public void onClosed(Connection connection) | ||
{ | ||
if (connection instanceof AbstractWebSocketConnection) | ||
super.onClosed(connection); | ||
} | ||
} |