繁体   English   中英

Netty客户端连接关闭太慢

[英]Netty client side connection close too slow

这是我的客户端源代码:

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秒钟。 有什么办法减少它吗?

非常感谢你

看一下shutdownGracefully(long quietPeriod,long timeout,TimeUnit unit) ,您可以指定quietPeriod,默认情况下为几秒钟。
如果缩短此时间,我不确定会带来什么影响。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM