gpt4 book ai didi

node.js - 有没有办法在延迟后停止函数? Nodejs

转载 作者:太空宇宙 更新时间:2023-11-04 00:02:11 25 4
gpt4 key购买 nike

是否可以在延迟后中止函数?像这样的东西:

function f() {
//Do some process here
}

after(10000).stop(f)

知道如何做到这一点吗?谢谢。

最佳答案

尝试这样的集群模块

const cluster = require('cluster');

if (cluster.isMaster) {
const fn = cluster.fork();
setTimeout(_=>fn.process.kill(), 300);
} else {
for(;;) {
process.stdout.write('#');
}
}

关于node.js - 有没有办法在延迟后停止函数? Nodejs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54143068/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com