Browse Source

correct documentation of Stream#destroy

v0.8.7-release
Dominic Tarr 13 years ago
committed by isaacs
parent
commit
7accaeb490
  1. 5
      doc/api/stream.markdown

5
doc/api/stream.markdown

@ -174,8 +174,9 @@ Same as above but with a `buffer`.
### stream.destroy()
Closes the underlying file descriptor. Stream will not emit any more events.
Any queued write data will not be sent.
Closes the underlying file descriptor. Stream is no longer `writable` nor `readable`.
the stream will not emit any more 'data', or 'end' events. Any queued write data will not be sent.
the stream should emit 'close' event once it's resources have been disposed of.
### stream.destroySoon()

Loading…
Cancel
Save