Skip to content

Commit

Permalink
doc: document callback of http res/req end method
Browse files Browse the repository at this point in the history
Add documentation for the callback parameter of http.ClientRequest's and
http.ServerResponse's end methods.

PR-URL: #181
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Brendan Ashworth <squirrelslikeacorns@gmail.com>
  • Loading branch information
JacksonTian authored and bnoordhuis committed Dec 18, 2014
1 parent dab6f68 commit a553267
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions doc/api/http.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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])

Expand Down Expand Up @@ -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.)
Expand Down

0 comments on commit a553267

Please sign in to comment.