blob: f6dae52c9c78610599d27a5cdc7e76f07f1a05da [file] [log] [blame] [raw]
package protocolsupport.protocol.pipeline;
import java.util.List;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
public interface IPacketDecoder {
public void decode(ChannelHandlerContext ctx, ByteBuf input, List<Object> list) throws Exception;
}