mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
doc: improve docs for Http2Session:frameError
Improve documentation regarding the callback parameters for the frameError event for instances of Http2Session, making it inline with the currently accepted structure, like the rest of the documentation. Refs: https://github.com/nodejs/help/issues/877#issuecomment-381253464 PR-URL: https://github.com/nodejs/node/pull/20236 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
This commit is contained in:
parent
1e40b75404
commit
2a30bfe295
@ -159,18 +159,16 @@ an `Http2Session`.
|
||||
added: v8.4.0
|
||||
-->
|
||||
|
||||
* `type` {integer} The frame type.
|
||||
* `code` {integer} The error code.
|
||||
* `id` {integer} The stream id (or `0` if the frame isn't associated with a
|
||||
stream).
|
||||
|
||||
The `'frameError'` event is emitted when an error occurs while attempting to
|
||||
send a frame on the session. If the frame that could not be sent is associated
|
||||
with a specific `Http2Stream`, an attempt to emit `'frameError'` event on the
|
||||
`Http2Stream` is made.
|
||||
|
||||
When invoked, the handler function will receive three arguments:
|
||||
|
||||
* An integer identifying the frame type.
|
||||
* An integer identifying the error code.
|
||||
* An integer identifying the stream (or 0 if the frame is not associated with
|
||||
a stream).
|
||||
|
||||
If the `'frameError'` event is associated with a stream, the stream will be
|
||||
closed and destroyed immediately following the `'frameError'` event. If the
|
||||
event is not associated with a stream, the `Http2Session` will be shut down
|
||||
|
Loading…
Reference in New Issue
Block a user