view src/fdl/Handler.java @ 7:1809e2b05824

Initial revision
author fuchita
date Sat, 16 Feb 2008 13:12:52 +0900
parents 083a0b5e12cc
children
line wrap: on
line source


package fdl;
import java.io.IOException;
import java.nio.channels.ClosedChannelException;
import java.nio.channels.SelectionKey;

public interface Handler {
    public void handle(SelectionKey key) throws ClosedChannelException, IOException;
}