summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJackson Tian <puling.tyq@alibaba-inc.com>2014-12-18 15:52:42 +0800
committerBen Noordhuis <info@bnoordhuis.nl>2014-12-18 19:39:30 +0100
commita5532674b09ebb10bee1bdd3c5c8ff44011a4912 (patch)
tree6bd0d1df92878adfd0dac4ef592a73456ce1c9a4 /doc
parentdab6f681cd8c43351aa56f4deb2e327c8e4c5cfe (diff)
downloadnode-new-a5532674b09ebb10bee1bdd3c5c8ff44011a4912.tar.gz
doc: document callback of http res/req end method
Add documentation for the callback parameter of http.ClientRequest's and http.ServerResponse's end methods. PR-URL: https://github.com/iojs/io.js/pull/181 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Brendan Ashworth <squirrelslikeacorns@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/http.markdown5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/api/http.markdown b/doc/api/http.markdown
index c639bdfd5d..3d482b441c 100644
--- a/doc/api/http.markdown
+++ b/doc/api/http.markdown
@@ -444,6 +444,8 @@ response.
If `data` is specified, it is equivalent to calling
`response.write(data, encoding)` followed by `response.end(callback)`.
+If `callback` is specified, it will be called when the response stream
+is finished.
## http.request(options[, callback])
@@ -890,6 +892,9 @@ chunked, this will send the terminating `'0\r\n\r\n'`.
If `data` is specified, it is equivalent to calling
`request.write(data, encoding)` followed by `request.end(callback)`.
+If `callback` is specified, it will be called when the request stream
+is finished.
+
### request.abort()
Aborts a request. (New since v0.3.8.)