view src/fdl/TupleHandler.java @ 24:35375016b2f0 simple-test-passed

cleanup.
author kono
date Wed, 20 Aug 2008 10:18:05 +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 TupleHandler {
	static final int MAX_USER = 99;
	public int user = 0;
    public void handle(SelectionKey key) throws ClosedChannelException, IOException;
		
}