Package org.springframework.web.socket
Class BinaryMessage
java.lang.Object
org.springframework.web.socket.AbstractWebSocketMessage<ByteBuffer>
org.springframework.web.socket.BinaryMessage
- All Implemented Interfaces:
WebSocketMessage<ByteBuffer>
A binary WebSocket message.
- Since:
- 4.0
- Author:
- Rossen Stoyanchev
-
Constructor Summary
ConstructorDescriptionBinaryMessage
(byte[] payload) Create a new binary WebSocket message with the given byte[] payload.BinaryMessage
(byte[] payload, boolean isLast) Create a new binary WebSocket message with the given byte[] payload representing the full or partial message content.BinaryMessage
(byte[] payload, int offset, int length, boolean isLast) Create a new binary WebSocket message by wrapping an existing byte array.BinaryMessage
(ByteBuffer payload) Create a new binary WebSocket message with the given ByteBuffer payload.BinaryMessage
(ByteBuffer payload, boolean isLast) Create a new binary WebSocket message with the given payload representing the full or partial message content. -
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
-
BinaryMessage
Create a new binary WebSocket message with the given ByteBuffer payload.- Parameters:
payload
- the non-null payload
-
BinaryMessage
Create a new binary WebSocket message with the given payload representing the full or partial message content. When theisLast
boolean flag is set tofalse
the message is sent as partial content and more partial messages will be expected until the boolean flag is set totrue
.- Parameters:
payload
- the non-null payloadisLast
- if the message is the last of a series of partial messages
-
BinaryMessage
public BinaryMessage(byte[] payload) Create a new binary WebSocket message with the given byte[] payload.- Parameters:
payload
- a non-null payload; note that this value is not copied so care must be taken not to modify the array.
-
BinaryMessage
public BinaryMessage(byte[] payload, boolean isLast) Create a new binary WebSocket message with the given byte[] payload representing the full or partial message content. When theisLast
boolean flag is set tofalse
the message is sent as partial content and more partial messages will be expected until the boolean flag is set totrue
.- Parameters:
payload
- a non-null payload; note that this value is not copied so care must be taken not to modify the array.isLast
- if the message is the last of a series of partial messages
-
BinaryMessage
public BinaryMessage(byte[] payload, int offset, int length, boolean isLast) Create a new binary WebSocket message by wrapping an existing byte array.- Parameters:
payload
- a non-null payload; note that this value is not copied so care must be taken not to modify the array.offset
- the offset into the array where the payload startslength
- the length of the array considered for the payloadisLast
- if the message is the last of a series of partial messages
-
-
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>
-