An Analysis of the close event in node. js and node. jsclose

Source: Internet
Author: User

An Analysis of the close event in node. js and node. jsclose

If the connection is interrupted before the end method of the http. ServerResponse object is called, the close event of the http. ServerResponse object is triggered.

Copy codeThe Code is as follows:
Var http = require ("http ");
Var server = http. createServer (function (req, res ){
If (req. url! = "/Favicon. ico "){
Res. on ("close", function (){
Console. log ("Connection interrupted ")
});
SetTimeout (function (){
Res. setHeader ("Content-Type", "text/html ");
Res. write ("Res. write ("hello ");
Res. end ();
},10000 );
}
});
 
Server. listen (1337, "localhost", function (){
Console. log ("Start listening" + server. address (). port + "......");
});

The above code is as follows:

After a request is sent from the client, send "hello" to the client after 10 seconds. Listen for the close event at the same time.

If the server is shut down within 10 seconds, the server will see "the connection is interrupted" because the res. end () method will not be executed within 10 seconds.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.