cn.hutool.socket.protocol.MsgDecoder Maven / Gradle / Ivy
package cn.hutool.socket.protocol;
import java.nio.ByteBuffer;
import cn.hutool.socket.aio.AioSession;
/**
* 消息解码器
*
* @author looly
*
* @param 解码后的目标类型
*/
public interface MsgDecoder {
/**
* 对于从Socket流中获取到的数据采用当前MsgDecoder的实现类协议进行解析。
*
*
* @param session 本次需要解码的session
* @param readBuffer 待处理的读buffer
* @return 本次解码成功后封装的业务消息对象, 返回null则表示解码未完成
*/
T decode(AioSession session, ByteBuffer readBuffer);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy