El http.server.close() es una interfaz de programación de aplicaciones incorporada de clase Servidor dentro del módulo HTTP que se utiliza para evitar que el servidor acepte nuevas conexiones.
Sintaxis:
const server.close([callback])
Parámetros: este método acepta solo un argumento de función de devolución de llamada opcional como parámetro.
Valor de retorno: este método no devuelve nada más que una función de devolución de llamada.
Ejemplo 1: nombre de archivo-index.js
Javascript
// Node.js program to demonstrate the // server.close() method // Importing http module var http = require('http'); // Setting up PORT const PORT = process.env.PORT || 3000; // Creating http Server var httpServer = http.createServer( function (request, response) { // Getting the reference of the // underlying socket object // by using socket method const value = response.socket; // Display result by using end() method response.end("socket buffersize : " + value.bufferSize, 'utf8', () => { console.log("displaying the result..."); // Closing server // by using close() method httpServer.close(() => { console.log("server is closed") }) }); }); // Listening to http Server httpServer.listen(PORT, () => { console.log("Server is running at port 3000..."); });
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
Server is running at port 3000... displaying the result... server is closed
Ahora ejecute http://localhost:3000/ en el navegador y verá el siguiente resultado en la pantalla:
socket buffersize : 0
Ejemplo 2: nombre de archivo-index.js
Javascript
// Node.js program to demonstrate the // server.close() method // Importing http module var http = require('http'); // Request and response handler const http2Handlers = (request, response) => { // Getting the reference of the // underlying socket object // by using socket method const value = response.socket; // Display result by using end() method response.end("socket local address : " + value.localAddress, 'utf8', () => { console.log("displaying the result..."); // Closing server // by using close() method httpServer.close(() => { console.log("server is closed") }) }); }; // Creating http Server var httpServer = http.createServer( http2Handlers).listen(3000, () => { console.log("Server is running at port 3000..."); });
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
Server is running at port 3000... displaying the result... server is closed
Ahora ejecute http://localhost:3000/ en el navegador y verá el siguiente resultado en la pantalla:
socket local address : ::1
Referencia : https://nodejs.org/dist/latest-v12.x/docs/api/http.html#http_server_close_callback
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA