admin管理员组文章数量:1347233
If I have set a timeout in javascript
var myTimeoutId = setTimeout( function(){
... do some stuff ....
}, 15000);
and a different event makes me need to have that timeout execute immediate, is there a way that I can use that stored id to execute the function? I know that I could store off a reference to that function, call clearTimeout
on myTimeoutId
and then call the function directly, but there's a decent amount of book keeping involved in that.
Is there a function along the lines of executeNow( myTimeoutId )
?
If I have set a timeout in javascript
var myTimeoutId = setTimeout( function(){
... do some stuff ....
}, 15000);
and a different event makes me need to have that timeout execute immediate, is there a way that I can use that stored id to execute the function? I know that I could store off a reference to that function, call clearTimeout
on myTimeoutId
and then call the function directly, but there's a decent amount of book keeping involved in that.
Is there a function along the lines of executeNow( myTimeoutId )
?
2 Answers
Reset to default 8No. You need to create the function separately so it can be called from anywhere:
function fn (){
// ... do some stuff ....
}
var myTimeoutId = setTimeout( fn, 15000);
// one possibility
function other () {
clearTimeout(myTimeoutId);
fn();
}
in nodejs:
const timeout = setTimeout(() => {
console.log("timeout function");
}, 10000);
// execute timeout function
timeout._onTimeout();
clearTimeout(timeout);
本文标签: force a javascript timeout function to execute immediatelyStack Overflow
版权声明:本文标题:force a javascript timeout function to execute immediately - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743832069a2546707.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论