view rep/channel/REPPack.java @ 471:d2762d669617

sleep command to wait for singleton prevention
author one
date Tue, 12 Oct 2010 10:19:59 +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 ;


}