Mercurial > hg > RemoteEditor > REPSessionManager
view rep/channel/REPPack.java @ 181:3a2c6c2f9761
*** empty log message ***
author | kent |
---|---|
date | Fri, 29 Aug 2008 13:30:46 +0900 |
parents | 4ff68518e9ca |
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); }