Mercurial > hg > RemoteEditor > REPSessionManager
view rep/channel/REPPack.java @ 147:4ff68518e9ca
*** empty log message ***
author | kent |
---|---|
date | Wed, 27 Aug 2008 23:38:21 +0900 |
parents | |
children | eb89a73976fa |
line wrap: on
line source
package rep.channel; import java.nio.ByteBuffer; public interface REPPack<P> { public abstract ByteBuffer packUConv(P command); public abstract void send(P command); }