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

com.github.ltsopensource.nio.codec.Decoder Maven / Gradle / Ivy

package com.github.ltsopensource.nio.codec;

import com.github.ltsopensource.nio.channel.NioChannel;

import java.nio.ByteBuffer;
import java.util.List;

/**
 * @author Robert HG ([email protected]) on 1/30/16.
 */
public interface Decoder {

    List decode(NioChannel channel, ByteBuffer in) throws Exception;

}