WebSocketHandler
implementations and decorators.See: Description
Class | Description |
---|---|
AbstractWebSocketHandler |
A convenient base class for
WebSocketHandler implementation with empty methods. |
BeanCreatingHandlerProvider<T> |
Instantiates a target handler through a Spring
BeanFactory and also provides
an equivalent destroy method. |
BinaryWebSocketHandler |
A convenient base class for
WebSocketHandler implementation that process binary
messages only. |
ExceptionWebSocketHandlerDecorator |
An exception handling
WebSocketHandlerDecorator . |
LoggingWebSocketHandlerDecorator |
A
WebSocketHandlerDecorator that adds logging to WebSocket lifecycle events. |
PerConnectionWebSocketHandler |
A
WebSocketHandler that initializes and destroys a WebSocketHandler
instance for each WebSocket connection and delegates all other methods to it. |
TextWebSocketHandler |
A convenient base class for
WebSocketHandler implementation that process text
messages only. |
WebSocketHandlerDecorator |
WebSocketHandler
implementations and decorators.