view src/rep/channel/REPPack.java @ 205:540d7a8a9e33

add sessionmanager's file
author one
date Sat, 18 Dec 2010 17:35:25 +0900
parents 3133040ee4f4
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 ;


}