view rep/channel/ServerChannelSimulatorImpl.java @ 140:01062be677e9

*** empty log message ***
author kono
date Wed, 27 Aug 2008 20:23:39 +0900
parents 5b1a0574b406
children 785a3e8ea858
line wrap: on
line source

package rep.channel;

import java.io.IOException;
import java.net.ServerSocket;
import java.nio.channels.ServerSocketChannel;
import java.nio.channels.SocketChannel;
import java.nio.channels.spi.SelectorProvider;

public class ServerChannelSimulatorImpl<P> extends REPServerSocketChannel<P>{
	

	protected ServerChannelSimulatorImpl(SelectorProvider provider) {
		super(provider);
	}


	@Override
	public ServerSocket socket() {
		// TODO Auto-generated method stub
		return null;
	}


	@Override
	public SocketChannel accept() throws IOException {
		// TODO Auto-generated method stub
		
		return null;
	}


	@Override
	protected void implCloseSelectableChannel() throws IOException {
		// TODO Auto-generated method stub
		
	}


	@Override
	protected void implConfigureBlocking(boolean block) throws IOException {
		// TODO Auto-generated method stub
		
	}
	
	public REPServerSocketChannel<P> open() {
		return new ServerChannelSimulatorImpl<P>(null);
	}

}