来自频道的Netty remoteaddress为null

发布于 2025-01-29 10:14:24 字数 1084 浏览 1 评论 0原文

以下代码来自chandyboundhandleradapter的扩展类别的一部分:

@Override
public void channelInactive(ChannelHandlerContext ctx) throws Exception {
    System.out.println("channel inactive, reconnect to the server.");
    long sleepTimeMs = 1000;

    final EventLoop eventLoop = ctx.channel().eventLoop();
    SocketAddress socketAddress1 = ctx.channel().remoteAddress();
    eventLoop.schedule(() -> {
        try {
            System.out.println("Reconnecting ...");
            tcpClient.connect(ctx.channel().remoteAddress());
        } catch (Throwable e) {
            e.printStackTrace();
        }
    }, sleepTimeMs, TimeUnit.MILLISECONDS);

    ctx.fireChannelInactive();
}

没有

SocketAddress socketAddress1 = ctx.channel().remoteAddress();

以下行将抛出nullpoInterException

tcpClient.connect(ctx.channel().remoteAddress())

作为ctx.channel()。remoteadDress。 () param是null(我在有没有和没有socketAddress1分配的情况下多次对其进行了测试)。

有什么解释吗?

The following code is from a piece from a extended class of ChannelInboundHandlerAdapter:

@Override
public void channelInactive(ChannelHandlerContext ctx) throws Exception {
    System.out.println("channel inactive, reconnect to the server.");
    long sleepTimeMs = 1000;

    final EventLoop eventLoop = ctx.channel().eventLoop();
    SocketAddress socketAddress1 = ctx.channel().remoteAddress();
    eventLoop.schedule(() -> {
        try {
            System.out.println("Reconnecting ...");
            tcpClient.connect(ctx.channel().remoteAddress());
        } catch (Throwable e) {
            e.printStackTrace();
        }
    }, sleepTimeMs, TimeUnit.MILLISECONDS);

    ctx.fireChannelInactive();
}

Without having

SocketAddress socketAddress1 = ctx.channel().remoteAddress();

the following line would throw a NullPointerException:

tcpClient.connect(ctx.channel().remoteAddress())

as the ctx.channel().remoteAddress() param is null (I tested it multiple times with and without socketAddress1 assignment).

Any explanation of this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文