【问题标题】:Netty client side connection close too slowNetty 客户端连接关闭太慢
【发布时间】:2016-04-04 00:25:35
【问题描述】:

这是我的客户端源代码:

public class Client 
{
    Server server;
    Logger logger;
    ChannelHandlerContext responseCtx;
    public Client(String host, int port, int mode, String fileName)
    {
        server=null;
        EventLoopGroup group = new NioEventLoopGroup();
        try 
        {
            Bootstrap b = new Bootstrap(); 
            b.group(group);
            b.channel(NioSocketChannel.class);
            b.remoteAddress(new InetSocketAddress(host, port));
            b.handler(new MyChannelInitializer(server, mode,fileName));
            ChannelFuture f = b.connect().sync();
            f.channel().closeFuture().sync();
            System.out.println("client started");
        } 
        catch (InterruptedException e) 
        {
            e.printStackTrace();
        }
        finally 
        {
            try {
                group.shutdownGracefully().sync();
            } catch (InterruptedException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            Calendar endTime=Calendar.getInstance();
            System.out.println("client stopped "+endTime.getTimeInMillis());
        }
    }
    public static void main(String[] args) throws Exception 
    {
        @SuppressWarnings("unused")
        Client c=new Client("localhost",1234,MyFtpServer.SENDFILE,"D:\\SITO3\\Documents\\Xmas-20141224-310.jpg");
    }
}

这是我的文件传输完成侦听器源代码:

public class FileTransferCompleteListener implements ChannelFutureListener 
{
    Server server;

    public FileTransferCompleteListener(Server server) 
    {
        this.server=server;
    }

    @Override
    public void operationComplete(ChannelFuture cf) throws Exception 
    {
        Calendar endTime=Calendar.getInstance();
        System.out.println("File transfer completed! "+endTime.getTimeInMillis());
        if(server!=null)
            server.stop();
        else
            cf.channel().close();
    }
}

执行结果如下:

File transfer completed! 1451446521041
client started
client stopped 1451446523244

我想知道为什么关闭连接需要大约 2 秒。 有什么办法可以减少吗?

非常感谢

【问题讨论】:

    标签: java netty nio


    【解决方案1】:

    看看shutdownGracefully(long quietPeriod, long timeout, TimeUnit unit),你可以指定 quietPeriod,默认是几秒。
    我不确定如果你缩短它会产生什么影响。

    【讨论】:

    • 其实我是在开发FTP服务器。在主动模式下,当用户列出目录内容时,列表会快速显示在客户端,但是需要一段时间才能将控制权返回给用户。
    猜你喜欢
    • 2015-09-20
    • 1970-01-01
    • 1970-01-01
    • 2012-06-10
    • 2019-09-11
    • 1970-01-01
    • 1970-01-01
    • 2013-08-10
    • 2013-08-13
    相关资源
    最近更新 更多