view src/fdl/NullIOHandlerHook.java @ 80:04bd4ae97e7c

RingTopology is finished.
author one
date Sun, 22 Nov 2009 13:59:05 +0900
parents 56e015e8f5dc
children
line wrap: on
line source

package fdl;

import java.nio.ByteBuffer;
import java.nio.channels.SelectionKey;

public class NullIOHandlerHook implements IOHandlerHook {

	public void checkHook(SelectionKey key, int id, int seq, char mode) {
	}

	public void closeHook(SelectionKey key) {
	}

	public void inHook(SelectionKey key, int id, int seq, char mode) {
	}

	public void outHook(SelectionKey key, int id, int seq, char mode,
			ByteBuffer data) {
	}

	public void waitReadHook(SelectionKey key, int id, int seq, char mode) {
	}


}