1package muduo.rpc;
2
3public interface NewChannelCallback {
4
5    public abstract void run(RpcChannel channel);
6}
7