See: Description
Interface | Description |
---|---|
NativeWebSocketSession |
A
WebSocketSession that exposes the underlying, native WebSocketSession
through a getter. |
Class | Description |
---|---|
AbstractWebSocketSesssion<T> |
An abstract base class for implementations of
WebSocketSession . |
BinaryWebSocketHandlerAdapter |
A convenient base class for
WebSocketHandler implementation that process binary
messages only. |
ConvertingEncoderDecoderSupport<T,M> |
Base class that can be used to implement a standard
Encoder
and/or Decoder . |
ConvertingEncoderDecoderSupport.BinaryDecoder<T> |
A binary
javax.websocket.Encoder that delegates
to Spring's conversion service. |
ConvertingEncoderDecoderSupport.BinaryEncoder<T> |
A binary
javax.websocket.Encoder that delegates
to Spring's conversion service. |
ConvertingEncoderDecoderSupport.TextDecoder<T> |
A Text
javax.websocket.Encoder that delegates
to Spring's conversion service. |
ConvertingEncoderDecoderSupport.TextEncoder<T> |
A text
javax.websocket.Encoder that delegates
to Spring's conversion service. |
JettyWebSocketHandlerAdapter |
Adapts
WebSocketHandler to the Jetty 9 WebSocket API. |
JettyWebSocketSession |
A
WebSocketSession for use with the Jetty 9 WebSocket API. |
StandardWebSocketHandlerAdapter |
Adapts a
WebSocketHandler to the standard WebSocket for Java API. |
StandardWebSocketSession |
A
WebSocketSession for use with the standard WebSocket for Java API. |
TextWebSocketHandlerAdapter |
A convenient base class for
WebSocketHandler implementation that process text
messages only. |
WebSocketHandlerAdapter |
A convenient base class for
WebSocketHandler implementation with empty methods. |
WebSocketHandler
implementations.