Skip to content

Commit

Permalink
doc,http: add extends for derived classes
Browse files Browse the repository at this point in the history
Also removed redundant statments as extends is self-explanatory.

PR-URL: #29255
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
trivikr authored and BridgeAR committed Sep 3, 2019
1 parent 8599052 commit 8a93b63
Showing 1 changed file with 7 additions and 13 deletions.
20 changes: 7 additions & 13 deletions doc/api/http.md
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,8 @@ agent. Do not modify.
added: v0.1.17
-->

* Extends: {Stream}

This object is created internally and returned from [`http.request()`][]. It
represents an _in-progress_ request whose header has already been queued. The
header is still mutable using the [`setHeader(name, value)`][],
Expand Down Expand Up @@ -325,9 +327,6 @@ Unlike the `request` object, if the response closes prematurely, the
Node.js does not check whether Content-Length and the length of the
body which has been transmitted are equal or not.

The request inherits from [Stream][], and additionally implements the
following:

### Event: 'abort'
<!-- YAML
added: v1.4.1
Expand Down Expand Up @@ -819,8 +818,7 @@ nothing and waits for more input.
added: v0.1.17
-->

This class inherits from [`net.Server`][] and has the following additional
events:
* Extends: {net.Server}

### Event: 'checkContinue'
<!-- YAML
Expand Down Expand Up @@ -1110,12 +1108,11 @@ affects new connections to the server, not any existing connections.
added: v0.1.17
-->

* Extends: {Stream}

This object is created internally by an HTTP server — not by the user. It is
passed as the second parameter to the [`'request'`][] event.

The response inherits from [Stream][], and additionally implements the
following:

### Event: 'close'
<!-- YAML
added: v0.6.7
Expand Down Expand Up @@ -1608,14 +1605,13 @@ the request body should be sent.
added: v0.1.17
-->

* Extends: {stream.Readable}

An `IncomingMessage` object is created by [`http.Server`][] or
[`http.ClientRequest`][] and passed as the first argument to the [`'request'`][]
and [`'response'`][] event respectively. It may be used to access response
status, headers and data.

It implements the [Readable Stream][] interface, as well as the
following additional events, methods, and properties.

### Event: 'aborted'
<!-- YAML
added: v0.3.8
Expand Down Expand Up @@ -2273,6 +2269,4 @@ not abort the request or do anything besides add a `'timeout'` event.
[`socket.setTimeout()`]: net.html#net_socket_settimeout_timeout_callback
[`socket.unref()`]: net.html#net_socket_unref
[`url.parse()`]: url.html#url_url_parse_urlstring_parsequerystring_slashesdenotehost
[Readable Stream]: stream.html#stream_class_stream_readable
[Stream]: stream.html#stream_stream
[`HPE_HEADER_OVERFLOW`]: errors.html#errors_hpe_header_overflow

0 comments on commit 8a93b63

Please sign in to comment.