Interface WebSocketPartialListener

    • Method Detail

      • onWebSocketPartialBinary

        void onWebSocketPartialBinary​(java.nio.ByteBuffer payload,
                                      boolean fin)
        A WebSocket BINARY (or associated CONTINUATION) frame has been received.

        Important Note: The payload ByteBuffer cannot be modified, and the ByteBuffer object itself will be recycled on completion of this method call, make a copy of the data contained within if you want to retain it between calls.

        Parameters:
        payload - the binary message frame payload
        fin - true if this is the final frame, false otherwise
      • onWebSocketPartialText

        void onWebSocketPartialText​(java.lang.String payload,
                                    boolean fin)
        A WebSocket TEXT (or associated CONTINUATION) frame has been received.
        Parameters:
        payload - the text message payload

        Note that due to framing, there is a above average chance of any UTF8 sequences being split on the border between two frames will result in either the previous frame, or the next frame having an invalid UTF8 sequence, but the combined frames having a valid UTF8 sequence.

        The String being provided here will not end in a split UTF8 sequence. Instead this partial sequence will be held over until the next frame is received.

        fin - true if this is the final frame, false otherwise