Mercurial > hg > RemoteEditor > REPSessionManager
view rep/channel/REPPack.java @ 272:4d9058761c90
*** empty log message ***
author | kono |
---|---|
date | Thu, 11 Sep 2008 17:24:44 +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 ; }