Daha basit bir yöntem var.
SetTimeout kullanmak veya doğrudan soket ile çalışmak yerine,
istemci kullanımlarında 'seçenekler' içinde 'zaman aşımı' kullanabiliriz.
Aşağıda hem sunucunun hem de istemcinin kodu 3 kısımdır.
Modül ve seçenekler bölümü:
'use strict';
const assert = require('assert');
const http = require('http');
const options = {
host: '127.0.0.1',
port: 3000,
method: 'GET',
path: '/',
timeout: 2000
};
Sunucu bölümü:
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();
});
}
Müşteri bölümü:
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();
Yukarıdaki 3 parçanın tümünü tek bir dosyaya, "a.js" dosyasına koyarsanız ve ardından şunu çalıştırın:
node a.js
daha sonra çıktı:
startServer
Server listening on http:
startClient
timeout! 2 seconds expired
got closed!
got error, req.destroy() was called!
Umarım yardımcı olur.