Mercurial > hg > RemoteEditor > REPSessionManager
view rep/channel/REPPack.java @ 287:1ff8bfc0a99a test-editor
*** empty log message ***
author | kono |
---|---|
date | Sun, 28 Sep 2008 15:46:36 +0900 |
parents | 3c82100cdadd |
children |
line wrap: on
line source
package rep.channel; import java.io.IOException; import java.nio.ByteBuffer; import java.nio.channels.SocketChannel; public interface REPPack<P> { public ByteBuffer packUConv(P command); public P unpackUConv(SocketChannel sc) throws IOException ; }