view src/fdl/TupleHandler.java @ 14:006015077e99

add 3 obj
author axmo
date Mon, 11 Aug 2008 22:24:57 +0900
parents 083a0b5e12cc
children 35375016b2f0
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_TUPLE = 65536;
	static final int MAX_USER = 4;
	static final int BUFSIZE = 65535;
	public int user = 0;
    public void handle(SelectionKey key) throws ClosedChannelException, IOException;
		
}