Mercurial > hg > RemoteEditor > REPSessionManager
annotate rep/handler/REPHandler.java @ 217:4deaaaa6354e
*** empty log message ***
author | kono |
---|---|
date | Sun, 31 Aug 2008 00:26:35 +0900 |
parents | 4d9b32666ed2 |
children | 526ee0354067 |
rev | line source |
---|---|
144 | 1 package rep.handler; |
2 | |
178 | 3 import java.io.IOException; |
148 | 4 import java.nio.channels.SelectionKey; |
144 | 5 |
213 | 6 import rep.REPCommand; |
7 import rep.channel.REPSelectionKey; | |
8 | |
144 | 9 public interface REPHandler { |
213 | 10 void handle(REPSelectionKey<REPCommand> key)throws IOException; |
144 | 11 |
12 } |