view rep/handler/REPHandler.java @ 178:a097b1d619a1

*** empty log message ***
author pin
date Thu, 28 Aug 2008 22:04:48 +0900
parents 6a5fe529b192
children 4d9b32666ed2
line wrap: on
line source

package rep.handler;

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

public interface REPHandler {
	void handle(SelectionKey key)throws IOException;

}