Mercurial > hg > RemoteEditor > REPSessionManager
view rep/channel/REPPack.java @ 502:49b689b17d06 default tip
merged TestEditor to REPEditor
author | suika6039 |
---|---|
date | Tue, 21 Dec 2010 18:01:15 +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 ; }