Mercurial > hg > RemoteEditor > REPSessionManager
comparison rep/handler/REPHandler.java @ 213:4d9b32666ed2
*** empty log message ***
author | pin |
---|---|
date | Sat, 30 Aug 2008 17:56:06 +0900 |
parents | a097b1d619a1 |
children | 526ee0354067 |
comparison
equal
deleted
inserted
replaced
212:e8f716498caf | 213:4d9b32666ed2 |
---|---|
1 package rep.handler; | 1 package rep.handler; |
2 | 2 |
3 import java.io.IOException; | 3 import java.io.IOException; |
4 import java.nio.channels.SelectionKey; | 4 import java.nio.channels.SelectionKey; |
5 | 5 |
6 import rep.REPCommand; | |
7 import rep.channel.REPSelectionKey; | |
8 | |
6 public interface REPHandler { | 9 public interface REPHandler { |
7 void handle(SelectionKey key)throws IOException; | 10 void handle(REPSelectionKey<REPCommand> key)throws IOException; |
8 | 11 |
9 } | 12 } |