view rep/channel/ServerChannelSimulatorImpl.java @ 123:5b1a0574b406 add-simulator

*** empty log message ***
author pin
date Wed, 27 Aug 2008 17:21:25 +0900
parents
children 01062be677e9
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 extends REPServerSocketChannel{
	

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 static REPServerSocketChannel open() {
		new ServerChannelSimulator(null, null);
		return null;
	}

}