public interface WebSocketMessage<T>
| Modifier and Type | Method and Description | 
|---|---|
| T | getPayload()Return the message payload (never  null). | 
| int | getPayloadLength()Return the number of bytes contained in the message. | 
| boolean | isLast()When partial message support is available and requested via
  WebSocketHandler.supportsPartialMessages(),
 this method returnstrueif the current message is the last part of the
 complete WebSocket message sent by the client. | 
T getPayload()
null).int getPayloadLength()
boolean isLast()
WebSocketHandler.supportsPartialMessages(),
 this method returns true if the current message is the last part of the
 complete WebSocket message sent by the client. Otherwise false is returned
 if partial message support is either not available or not enabled.