package io.netty.channel;
public class ChannelDuplexHandler {
public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {}
public void write(ChannelHandlerContext ctx, Object msg, ChannelPromise promise) throws Exception {}
}