view rep/handler/REPHandler.java @ 358:034acadc0cdc

*** empty log message ***
author kono
date Sun, 19 Oct 2008 16:54:37 +0900
parents 86935b872385
children
line wrap: on
line source

package rep.handler;

import java.io.IOException;

import rep.REPCommand;
import rep.channel.REPSelectionKey;
import rep.channel.REPSocketChannel;

public interface REPHandler {
	void handle(REPSelectionKey<REPCommand> key) throws IOException;

	void cancel(REPSocketChannel<REPCommand> socketChannel);

}