Java org.springframework.web.socket BinaryMessage fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.web.socket BinaryMessage fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.web.socket BinaryMessage.

The text is from its open source code.

Constructor

BinaryMessage(ByteBuffer payload)
Create a new binary WebSocket message with the given ByteBuffer payload.
BinaryMessage(byte[] payload)
Create a new binary WebSocket message with the given byte[] payload.
BinaryMessage(byte[] payload, int offset, int length, boolean isLast)
Create a new binary WebSocket message by wrapping an existing byte array.
BinaryMessage(ByteBuffer payload, boolean isLast)
Create a new binary WebSocket message with the given payload representing the full or partial message content.
BinaryMessage(byte[] payload, boolean isLast)
Create a new binary WebSocket message with the given byte[] payload representing the full or partial message content.