view rep/channel/REPPack.java @ 184:3c82100cdadd

*** empty log message ***
author kent
date Fri, 29 Aug 2008 16:38:11 +0900
parents eb89a73976fa
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 ;


}