Mercurial > hg > RemoteEditor > REPSessionManager
view rep/channel/REPPack.java @ 386:bba62c4ac323
sync-option
author | one@firefly.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Mon, 10 Nov 2008 22:19:34 +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 ; }