view rep/handler/REPHandler.java @ 347:86935b872385

*** empty log message ***
author kono
date Tue, 14 Oct 2008 09:33:31 +0900
parents ad487e63e3c8
children 034acadc0cdc
line wrap: on
line source

package rep.handler;

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

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

	void cancel(REPSocketChannel<REPCommand> socketChannel);

}