Mercurial > hg > RemoteEditor > REPSessionManager
view rep/handler/REPHandler.java @ 287:1ff8bfc0a99a test-editor
*** empty log message ***
author | kono |
---|---|
date | Sun, 28 Sep 2008 15:46:36 +0900 |
parents | ad487e63e3c8 |
children | 86935b872385 |
line wrap: on
line source
package rep.handler; import java.io.IOException; import rep.REPCommand; import rep.channel.REPSelectionKey; import rep.channel.REPSocketChannel; public interface REPHandler { void handle(REPSelectionKey<REPCommand> key)throws IOException; void cancel(REPSocketChannel<REPCommand> socketChannel); }