网状4多个客户端(Netty 4 multiple client)

2019-07-01 12:06发布

我需要让客户能够做出许多连接。 我使用了Netty 4.0。 不幸的是所有现存的例子不显示怎么创造了很多的连接。

public class TelnetClient {
    private Bootstrap b;
    public TelnetClient() {
        b = new Bootstrap();
    }
    public void connect(String host, int port) throws Exception {
        try {
            b.group(new NioEventLoopGroup()).channel(NioSocketChannel.class).remoteAddress(host, port).handler(new TelnetClientInitializer());
            Channel ch = b.connect().sync().channel();
            ChannelFuture lastWriteFuture = null;
            BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
            for (;;) {
                String line = in.readLine();
                if (line == null) break;
                lastWriteFuture = ch.write(line + "\r\n");
                if (line.toLowerCase().equals("bye")) {
                    ch.closeFuture().sync();
                    break;
                }
            }
            if (lastWriteFuture != null) lastWriteFuture.sync();
        } finally {
            b.shutdown();
        }
    }
    public static void main(String[] args) throws Exception {
        TelnetClient tc = new TelnetClient();
        tc.connect("127.0.0.1", 1048);
        tc.connect("192.168.1.123", 1050);
    //...
    }
}

这是正确的决定吗? 或可能是更好?

Answer 1:

是它几乎正确的..你必须改变的唯一事情是NioEventLoopGroup对每一个连接的创建。

NioEventLoopGroup实例是昂贵,因此他们应该被共享。 创建一个实例,并分享它,由同一个实例传递给Bootstrap.group(...)每次..



文章来源: Netty 4 multiple client