接口 SockJsMessageCodec

    • 方法详细资料

      • encode

        String encode​(String... messages)
        Encode the given messages as a SockJS message frame. Aside from applying standard JSON quoting to each message, there are some additional JSON Unicode escaping rules. See the "JSON Unicode Encoding" section of SockJS protocol (i.e. the protocol test suite).
        参数:
        messages - the messages to encode
        返回:
        the content for a SockJS message frame (never null)
      • decode

        String[] decode​(String content)
                 throws IOException
        Decode the given SockJS message frame.
        参数:
        content - the SockJS message frame
        返回:
        an array of messages, or null if none
        抛出:
        IOException - if the content could not be parsed