All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zusmart.base.network.handler.support.DefaultChannelContextHandler Maven / Gradle / Ivy

Go to download

提供基础的工具类及方法类,Logging,Scanner,Buffer,NetWork,Future,Thread

There is a newer version: 1.0.6
Show newest version
package com.zusmart.base.network.handler.support;

import java.io.IOException;

import com.zusmart.base.buffer.Buffer;
import com.zusmart.base.network.ChannelContext;
import com.zusmart.base.network.handler.ChannelContextHandler;
import com.zusmart.base.network.handler.ChannelContextHandlerContext;
import com.zusmart.base.network.message.Message;

public class DefaultChannelContextHandler implements ChannelContextHandler {

	@Override
	public void onRegister(ChannelContext channelContext, ChannelContextHandlerContext handlerContext) {
		ChannelContextHandlerContext context = handlerContext.getNext();
		if (null != context) {
			context.getHandler().onRegister(channelContext, context);
		}
	}

	@Override
	public void unRegister(ChannelContext channelContext, ChannelContextHandlerContext handlerContext) {
		ChannelContextHandlerContext context = handlerContext.getNext();
		if (null != context) {
			context.getHandler().unRegister(channelContext, context);
		}
	}

	@Override
	public void onMessage(ChannelContext channelContext, ChannelContextHandlerContext handlerContext, Message message) {
		ChannelContextHandlerContext context = handlerContext.getNext();
		if (null != context) {
			context.getHandler().onMessage(channelContext, context, message);
		}
	}

	@Override
	public void onException(ChannelContext channelContext, ChannelContextHandlerContext handlerContext, Throwable cause) {
		ChannelContextHandlerContext context = handlerContext.getNext();
		if (null != context) {
			context.getHandler().onException(channelContext, context, cause);
		}
	}

	@Override
	public void onTimeout(ChannelContext channelContext, ChannelContextHandlerContext handlerContext) {
		ChannelContextHandlerContext context = handlerContext.getNext();
		if (null != context) {
			context.getHandler().onTimeout(channelContext, context);
		}
	}

	@Override
	public void onReader(ChannelContext channelContext, ChannelContextHandlerContext handlerContext, Buffer buffer) throws IOException {
		ChannelContextHandlerContext context = handlerContext.getNext();
		if (null != context) {
			context.getHandler().onReader(channelContext, context, buffer);
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy