view rep/channel/REPPack.java @ 430:03ab374605a6

Test program termination.
author one
date Sat, 02 Jan 2010 04:16:25 +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 ;


}