Added proper shutting down

This commit is contained in:
MiTask 2024-06-14 08:35:54 +00:00
parent d3792b4bd0
commit 65576e82b3

View File

@ -15,8 +15,25 @@ class Client extends EventEmitter {
this.setupSwarm();
process.on('exit', () => {
console.log('EXIT signal received. Shutting down HyperSwarm...');
this.destroy();
});
process.on('SIGTERM', () => {
console.log('SIGTERM signal received. Shutting down HyperSwarm...');
this.destroy().then(() => {
console.log('HyperSwarm was shut down. Exiting the process with exit code 0.');
process.exit(0);
});
});
process.on('SIGINT', () => {
console.log('SIGINT signal received. Shutting down HyperSwarm...');
this.destroy().then(() => {
console.log('HyperSwarm was shut down. Exiting the process with exit code 0.');
process.exit(0);
});
});
}
setupSwarm() {