Package org.eclipse.jetty.websocket.api
Interface WebSocketPingPongListener
-
- All Superinterfaces:
WebSocketConnectionListener
@Deprecated public interface WebSocketPingPongListener extends WebSocketConnectionListener
Deprecated.This api is not supported anymore. Please do not use it.WebSocket PING/PONG Listener interface for incoming WebSocket PING/PONG frames.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidonWebSocketPing(java.nio.ByteBuffer payload)Deprecated.A WebSocket PING has been received.voidonWebSocketPong(java.nio.ByteBuffer payload)Deprecated.A WebSocket PONG has been received.-
Methods inherited from interface org.eclipse.jetty.websocket.api.WebSocketConnectionListener
onWebSocketClose, onWebSocketConnect, onWebSocketError
-
-
-
-
Method Detail
-
onWebSocketPing
void onWebSocketPing(java.nio.ByteBuffer payload)
Deprecated.A WebSocket PING has been received.- Parameters:
payload- the ping payload
-
onWebSocketPong
void onWebSocketPong(java.nio.ByteBuffer payload)
Deprecated.A WebSocket PONG has been received.- Parameters:
payload- the pong payload
-
-