Uh oh!
There was an error while loading. Please reload this page.
doc: add timeout.close - #40036
Conversation
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
tniessen
commented
Sep 8, 2021
Does this have any benefit over |
galkin
commented
Sep 8, 2021
this is a wrapper around clearTimeout. The name doesn't have |
Actually the legacy status is there for features that we likely won't remove ever: Lines 42 to 44 in 6fdd582 According to the collaborator guide, if it's a feature that was exposed and we have good reasons to think it's used out there (in this case we know for sure it is), we should document it as public: node/doc/guides/collaborator-guide.md Lines 313 to 317 in 7dbc0f7 Since it's almost an alias, I think the following applies: node/doc/guides/collaborator-guide.md Lines 442 to 443 in 7dbc0f7 In this case, I personally it should be documented with Legacy status, unless there are use cases where it makes sense to use it over clearTimeout (in which case it should be documented as stable). |
galkin
commented
Sep 8, 2021
Uh oh!
There was an error while loading. Please reload this page.
galkin
commented
Sep 13, 2021
@jasnell, could you approve this pull? |
Uh oh!
There was an error while loading. Please reload this page.
Landed in c365145...de10ab2 |
PR-URL: #40036 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Michaël Zasso <targos@protonmail.com>
PR-URL: #40036 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Michaël Zasso <targos@protonmail.com>
PR-URL: #40036 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Hello,
I noticed that the
Timeout.closeis not documented. We have this method from v0.9.1:node/lib/timers.js
Lines 274 to 282 in 985e3a2
Current codebase wraps clearTimeout:
node/lib/timers.js
Lines 251 to 254 in c4096a3
This pull adds documentation for this method.