saveShutdown methode

This commit is contained in:
jusax23 2021-10-23 12:30:10 +02:00
parent fcbc24fbf5
commit 8c3d55dec1

View file

@ -66,6 +66,18 @@ const manager = function(process){
mayShutdown();
});
};
t.saveShutdown = function(){
return new Promise((res,rej)=>{
t.shutdown().then(()=>{
setTimeout(function() { //some save time
process.exit();
}, 1000);
}).catch(()=>{
setTimeout(function() { //shutdown on error with more save time
process.exit();
}, 10000);
});
});
}
}
export default manager;