Home
last modified time | relevance | path

Searched refs:sendTrailers (Results 1 – 10 of 10) sorted by relevance

/third_party/node/test/parallel/
Dtest-http2-trailers.js28 stream.sendTrailers({ [trailerKey]: trailerValue });
30 () => stream.sendTrailers({}),
39 () => stream.sendTrailers({}),
54 req.sendTrailers({ [trailerKey]: trailerValue });
62 () => req.sendTrailers({}),
Dtest-http2-misused-pseudoheaders.js28 stream.sendTrailers({ ':status': 'bar' });
Dtest-http2-exceeds-server-trailer-size.js19 stream.sendTrailers({ 'test-trailer': 'X'.repeat(64 * 1024) });
Dtest-http2-compat-serverrequest-trailers.js56 request.sendTrailers({
Dtest-http2-sent-headers.js17 stream.sendTrailers({ xyz: 'abc' });
/third_party/node/test/known_issues/
Dtest-http2-trailers-after-session-close.js25 stream.sendTrailers({ xyz: 'abc' });
/third_party/node/doc/api/
Dhttp2.md987 The `http2stream.sendTrailers()` method can then be called to send trailing
992 `http2stream.sendTrailers()` or `http2stream.close()` to close the
1423 #### `http2stream.sendTrailers(headers)`
1444 stream.sendTrailers({ xyz: 'abc' });
1666 of payload data to be sent. The `http2stream.sendTrailers()` method can then be
1671 `http2stream.sendTrailers()` or `http2stream.close()` to close the
1680 stream.sendTrailers({ ABC: 'some value to send' });
1759 sent. The `http2stream.sendTrailers()` method can then be used to sent trailing
1764 `http2stream.sendTrailers()` or `http2stream.close()` to close the
1783 stream.sendTrailers({ ABC: 'some value to send' });
[all …]
Derrors.md1737 The `http2stream.sendTrailers()` method cannot be called until after the
/third_party/node/lib/internal/http2/
Dcompat.js450 this.sendTrailers(this[kResponse][kTrailers]);
Dcore.js435 stream.sendTrailers({});
2243 sendTrailers(headers) { method in Http2Stream