view rep/handler/REPHandler.java @ 217:4deaaaa6354e

*** empty log message ***
author kono
date Sun, 31 Aug 2008 00:26:35 +0900
parents 4d9b32666ed2
children 526ee0354067
line wrap: on
line source

package rep.handler;

import java.io.IOException;
import java.nio.channels.SelectionKey;

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

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

}