package upem.net.tcp.nonblocking.chat;

/**
 * Created by carayol on 02/05/16.
 */
public interface Reader {

    public static enum ProcessStatus {DONE,REFILL,ERROR};

    public ProcessStatus process();

    public Object get();

    public void reset();

}
