Mercurial > hg > FederatedLinda
view src/fdl/TupleHandler.java @ 37:2a366abc3f1f
*** empty log message ***
author | kono |
---|---|
date | Sun, 24 Aug 2008 21:21:40 +0900 |
parents | 35375016b2f0 |
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; }