mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
4cf0ce5bb4
Mostly quite minor edits. Those possibly of more interest are: emitter.setMaxListeners(n) That the limit is per event name for an emitter. fs.readlink() Not a path, but rather the symbolic link's string value, which would be at best a partial path, certainly not a 'resolvedPath' global.__filename This may be "well-known" but this is a full path to the module that referencing code is running in. It is not the main program's path, unless you are in the main program. Each module knows only its own path. server.listen(port,...) I actually needed this functionality... "gimme just _any_ next port" stream.end() stream.destroy() Yeah, everybody knows what happens to the queued data, but let's make it *really* explicit for the first readers.
629 B
629 B
Timers
setTimeout(callback, delay, [arg], [...])
To schedule execution of a one-time callback
after delay
milliseconds. Returns a
timeoutId
for possible use with clearTimeout()
. Optionally you can
also pass arguments to the callback.
clearTimeout(timeoutId)
Prevents a timeout from triggering.
setInterval(callback, delay, [arg], [...])
To schedule the repeated execution of callback
every delay
milliseconds.
Returns a intervalId
for possible use with clearInterval()
. Optionally
you can also pass arguments to the callback.
clearInterval(intervalId)
Stops a interval from triggering.