All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.zhangxd1989.basetool.socket.protocol.MsgDecoder Maven / Gradle / Ivy

There is a newer version: 1.0.16
Show newest version
package com.github.zhangxd1989.basetool.socket.protocol;

import com.github.zhangxd1989.basetool.socket.aio.AioSession;

import java.nio.ByteBuffer;


/**
 * 消息解码器
 *
 * @param  解码后的目标类型
 * @author sheldon
 */
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