view rep/handler/REPHandlerDoWaiting.java @ 315:20fb70068089

*** empty log message ***
author kono
date Mon, 06 Oct 2008 18:58:49 +0900
parents ad487e63e3c8
children
line wrap: on
line source

package rep.handler;

import java.io.IOException;
import rep.REPCommand;
import rep.SessionManager;
import rep.channel.REPSelectionKey;
import rep.channel.REPSocketChannel;

public class REPHandlerDoWaiting implements REPHandler {
	SessionManager manager;
	
	public REPHandlerDoWaiting(SessionManager manager) {
		this.manager = manager;
	}

	public void handle(REPSelectionKey<REPCommand> key) throws IOException {
		
	}
	
	public void cancel(REPSocketChannel<REPCommand> socketChannel) {
		manager.remove(socketChannel);
	}

}