Interface WebSocketListener
- All Superinterfaces:
SubProtocolCapable
- All Known Implementing Classes:
WebSocketInboundChannelAdapter
public interface WebSocketListener extends SubProtocolCapable
A contract for handling incoming
WebSocketMessages messages as part of a higher
level protocol, referred to as "sub-protocol" in the WebSocket RFC specification.
Implementations of this interface can be configured on a
IntegrationWebSocketContainer which delegates messages and
WebSocketSession events to this implementation.
- Since:
- 4.1
- Author:
- Andy Wilkinson, Artem Bilan
- See Also:
WebSocketInboundChannelAdapter
-
Method Summary
Modifier and Type Method Description voidafterSessionEnded(WebSocketSession session, CloseStatus closeStatus)Invoked after aWebSocketSessionhas ended.voidafterSessionStarted(WebSocketSession session)Invoked after aWebSocketSessionhas started.voidonMessage(WebSocketSession session, WebSocketMessage<?> message)Handle the receivedWebSocketMessage.
-
Method Details
-
onMessage
Handle the receivedWebSocketMessage.- Parameters:
session- the WebSocket sessionmessage- the WebSocket message- Throws:
Exception- the 'onMessage' Exception
-
afterSessionStarted
Invoked after aWebSocketSessionhas started.- Parameters:
session- the WebSocket session- Throws:
Exception- the 'afterSessionStarted' Exception
-
afterSessionEnded
Invoked after aWebSocketSessionhas ended.- Parameters:
session- the WebSocket sessioncloseStatus- the reason why the session was closed- Throws:
Exception- the 'afterSessionEnded' Exception
-