view rep/channel/REPServerSocket.java @ 162:2bd3264abf55

*** empty log message ***
author pin
date Thu, 28 Aug 2008 16:54:54 +0900
parents 31334767e65d
children 9bb6bbb08ad7
line wrap: on
line source

package rep.channel;

import java.io.IOException;
import java.nio.channels.SocketChannel;

public class REPServerSocket<T> extends REPSocketChannel<T>{

	public REPServerSocket(SocketChannel channel) {
		super(channel);
	}
	

	public static <T> REPServerSocket<T> create() throws IOException {
		return new REPServerSocket<T>(null);
	}

}