com.github.ltsopensource.nio.codec.Encoder Maven / Gradle / Ivy
package com.github.ltsopensource.nio.codec;
import com.github.ltsopensource.nio.channel.NioChannel;
import java.nio.ByteBuffer;
/**
* @author Robert HG ([email protected]) on 1/30/16.
*/
public interface Encoder {
ByteBuffer encode(NioChannel channel, Object msg);
}