package org.frameworkset.web.socket.sockjs; import java.io.IOException; import java.io.InputStream; public interface SockJsMessageCodec { /** * 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). * @param messages the messages to encode * @return the content for a SockJS message frame (never {@code null}) */ String encode(String... messages); /** * Decode the given SockJS message frame. * @param content the SockJS message frame * @return an array of messages, or {@code null} if none * @throws IOException if the content could not be parsed */ String[] decode(String content) throws IOException; /** * Decode the given SockJS message frame. * @param content the SockJS message frame * @return an array of messages, or {@code null} if none * @throws IOException if the content could not be parsed */ String[] decodeInputStream(InputStream content) throws IOException; }