Home
last modified time | relevance | path

Searched refs:sendTrailers (Results 1 – 8 of 8) 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-compat-serverrequest-trailers.js56 request.sendTrailers({
Dtest-http2-sent-headers.js17 stream.sendTrailers({ xyz: 'abc' });
/third_party/node/doc/api/
Dhttp2.md878 The `http2stream.sendTrailers()` method can then be called to send trailing
883 `http2stream.sendTrailers()` or `http2stream.close()` to close the
1277 #### `http2stream.sendTrailers(headers)`
1297 stream.sendTrailers({ xyz: 'abc' });
1491 sent. The `http2stream.sendTrailers()` method can then be used to sent trailing
1496 `http2stream.sendTrailers()` or `http2stream.close()` to close the
1505 stream.sendTrailers({ ABC: 'some value to send' });
1581 sent. The `http2stream.sendTrailers()` method can then be used to sent trailing
1586 `http2stream.sendTrailers()` or `http2stream.close()` to close the
1605 stream.sendTrailers({ ABC: 'some value to send' });
[all …]
Derrors.md1278 The `http2stream.sendTrailers()` method cannot be called until after the
/third_party/node/lib/internal/http2/
Dcompat.js421 this.sendTrailers(this[kResponse][kTrailers]);
Dcore.js407 stream.sendTrailers({});
2169 sendTrailers(headers) { method in Http2Stream