Ada metode yang lebih sederhana.
Alih-alih menggunakan setTimeout atau bekerja dengan soket secara langsung,
Kami dapat menggunakan 'batas waktu' di 'opsi' dalam penggunaan klien
Di bawah ini adalah kode server dan klien, dalam 3 bagian.
Bagian modul dan opsi:
'use strict';
const assert = require('assert');
const http = require('http');
const options = {
host: '127.0.0.1',
port: 3000,
method: 'GET',
path: '/',
timeout: 2000
};
Bagian server:
function startServer() {
console.log('startServer');
const server = http.createServer();
server
.listen(options.port, options.host, function () {
console.log('Server listening on http://' + options.host + ':' + options.port);
console.log('');
startClient();
});
}
Bagian klien:
function startClient() {
console.log('startClient');
const req = http.request(options);
req.on('close', function () {
console.log("got closed!");
});
req.on('timeout', function () {
console.log("timeout! " + (options.timeout / 1000) + " seconds expired");
req.destroy();
});
req.on('error', function (e) {
if (req.connection.destroyed) {
console.log("got error, req.destroy() was called!");
return;
}
console.log("got error! ", e);
});
req.end();
}
startServer();
Jika Anda meletakkan semua 3 bagian di atas dalam satu file, "a.js", lalu jalankan:
node a.js
maka, keluarannya adalah:
startServer
Server listening on http:
startClient
timeout! 2 seconds expired
got closed!
got error, req.destroy() was called!
Semoga membantu.