Sign in Sign up
kretrod/lodestone Public
Branches
master
6 lines (6 loc) · 201 Bytes Raw
package io.netty.channel;
import io.netty.util.concurrent.EventExecutor;
public interface ChannelHandlerContext {
    ChannelHandlerContext fireChannelRead(Object msg);
    EventExecutor executor();
}