admin管理员组文章数量:1352141
Say I have created a timer via:
setTimeout()
(or I'm using setInterval()
)
Whilst that timer is ticking down, and before it expires, I decide to close the browser tab which that code is executing in. Does the browser automatically clean up the timer at that point (taking into account that I have not called clearTimeout() at all)?
I would like to know whether there is a possibility of code lingering in memory for long enough that, when the timeout value has been reached, it could still execute code. Or whether closing the tab means the timer is wiped from memory, and thus the function to call in the setTimeout()
will never be executed.
Say I have created a timer via:
setTimeout()
(or I'm using setInterval()
)
Whilst that timer is ticking down, and before it expires, I decide to close the browser tab which that code is executing in. Does the browser automatically clean up the timer at that point (taking into account that I have not called clearTimeout() at all)?
I would like to know whether there is a possibility of code lingering in memory for long enough that, when the timeout value has been reached, it could still execute code. Or whether closing the tab means the timer is wiped from memory, and thus the function to call in the setTimeout()
will never be executed.
- I would suggest that it varies dependent on the browse but for example with Chrome a tab is essentially a process in itself; that, when closed, is removed from memory. As for other browsers I can't see the benefit of keeping it in memory but I couldn't say for sure. – RichieAHB Commented Jan 17, 2014 at 9:20
- No timeout will execute after the browser window it is associated with has been closed: "cleaned up" (as in GC'ed?) doesn't seem like much of a practical concern and is itself an implementation detail. – user2864740 Commented Jan 17, 2014 at 9:20
- @richieahb Yeah, I imagine this could be different for different browsers. Though what you say about Chrome makes sense. user2864740 Cheers for that. Do you happen to have a link to somewhere I can reference to look that up? I need to pass details onto some colleagues about this question. – Jason Evans Commented Jan 17, 2014 at 9:23
-
@JasonEvans Not directly, although I think that the [documented] answer lies directly in the scope of the the
window
context/lifetime. – user2864740 Commented Jan 17, 2014 at 9:25
3 Answers
Reset to default 7setInterval
and setTimeout
are the global context (via window
object) methods. Then you close the tab or window all contexts will remove. Then you open new tab/window all contexts will created.
The setInterval()
method will continue calling the function until clearInterval()
is called, or the window is closed. Same goes for setTimeout()
. You can give settieout to open window after 3 seconds on close. click and close. You will see that window wont be popping up.
See This
Both SetInterval() and SetTimeout() are a browser built-in schedulers. Which allows to setup function calls for execution after given period of time.
SetTimeout() can be cancelled by clearTimeout() method or on browser window closed.
SetInterval() method has same features as setTimeout. Which can be stopped by clearInterval call.
Functions used in setTimeout/setInterval are also referenced internally and tracked until plete, then cleaned up.
本文标签: memoryAre JavaScript timers immediately cleaned up when you close a browser tabStack Overflow
版权声明:本文标题:memory - Are JavaScript timers immediately cleaned up when you close a browser tab? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743911180a2560429.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论