Package org.springframework.web.socket
Class PingMessage
java.lang.Object
org.springframework.web.socket.AbstractWebSocketMessage<ByteBuffer>
org.springframework.web.socket.PingMessage
- All Implemented Interfaces:
WebSocketMessage<ByteBuffer>
A WebSocket ping message.
- Since:
- 4.0
- Author:
- Rossen Stoyanchev
-
Constructor Summary
ConstructorDescriptionCreate a new ping message with an empty payload.PingMessage
(ByteBuffer payload) Create a new ping message with the given ByteBuffer payload. -
Method Summary
Modifier and TypeMethodDescriptionint
Return the number of bytes contained in the message.protected String
Methods inherited from class org.springframework.web.socket.AbstractWebSocketMessage
equals, getPayload, hashCode, isLast, toString
-
Constructor Details
-
PingMessage
public PingMessage()Create a new ping message with an empty payload. -
PingMessage
Create a new ping message with the given ByteBuffer payload.- Parameters:
payload
- the non-null payload
-
-
Method Details
-
getPayloadLength
public int getPayloadLength()Description copied from interface:WebSocketMessage
Return the number of bytes contained in the message. -
toStringPayload
- Specified by:
toStringPayload
in classAbstractWebSocketMessage<ByteBuffer>
-