定时器intterupt Node.JS

时间:2015-09-22 02:46:52

标签: javascript node.js function timer

我希望这不是一个重复的问题,我在节点API文档页面上进行了研究。 我已经在我的一个脚本中调用了一个计时器。

 setInterval(function,10000);

现在,在某个地方,我希望继续执行计时器停止。

here is the unref() call I will refer to in a minute

我已经看过人们将以这种方式格式化的示例脚本。

var timer = setInterval(function,10000);
....
.... 
// when they want to stop the timer, they run 
timer.unref();

这对我不起作用,我收到了一个未定义的.unref 这种事情不可能吗?还是有办法让我停止计时器。

2 个答案:

答案 0 :(得分:3)

如果使用:

BigInteger

您可以使用var timer = setInterval(function() { }, 10000); 功能:

clearInterval

答案 1 :(得分:1)

您需要使用clearInterval(timer);

clearInterval