annotate src/fdl/TupleHandler.java @ 25:330fa49bc4fd
*** empty log message ***
author |
kono |
date |
Wed, 20 Aug 2008 14:12:15 +0900 |
parents |
35375016b2f0 |
children |
|
rev |
line source |
0
|
1
|
|
2 package fdl;
|
|
3 import java.io.IOException;
|
|
4 import java.nio.channels.ClosedChannelException;
|
|
5 import java.nio.channels.SelectionKey;
|
|
6
|
|
7 public interface TupleHandler {
|
24
|
8 static final int MAX_USER = 99;
|
0
|
9 public int user = 0;
|
|
10 public void handle(SelectionKey key) throws ClosedChannelException, IOException;
|
|
11
|
|
12 }
|