Sign in Sign up
kretrod/lodestone Public
Branches
master
5 lines (5 loc) · 256 Bytes Raw
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 {}
}