类 BinaryMessage

    • 构造器详细资料

      • BinaryMessage

        public BinaryMessage​(ByteBuffer payload)
        Create a new binary WebSocket message with the given ByteBuffer payload.
        参数:
        payload - the non-null payload
      • BinaryMessage

        public BinaryMessage​(ByteBuffer payload,
                             boolean isLast)
        Create a new binary WebSocket message with the given payload representing the full or partial message content. When the isLast boolean flag is set to false the message is sent as partial content and more partial messages will be expected until the boolean flag is set to true.
        参数:
        payload - the non-null payload
        isLast - 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.
        参数:
        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 the isLast boolean flag is set to false the message is sent as partial content and more partial messages will be expected until the boolean flag is set to true.
        参数:
        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.
        参数:
        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 starts
        length - the length of the array considered for the payload
        isLast - if the message is the last of a series of partial messages