view rep/handler/REPHandlerDoWaiting.java @ 274:ad487e63e3c8

*** empty log message ***
author kono
date Wed, 24 Sep 2008 15:49:09 +0900
parents c513cf1ce9cc
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);
	}

}