Searched refs:sendTrailers (Results 1 – 10 of 10) sorted by relevance
28 stream.sendTrailers({ [trailerKey]: trailerValue });30 () => stream.sendTrailers({}),39 () => stream.sendTrailers({}),54 req.sendTrailers({ [trailerKey]: trailerValue });62 () => req.sendTrailers({}),
28 stream.sendTrailers({ ':status': 'bar' });
19 stream.sendTrailers({ 'test-trailer': 'X'.repeat(64 * 1024) });
56 request.sendTrailers({
17 stream.sendTrailers({ xyz: 'abc' });
25 stream.sendTrailers({ xyz: 'abc' });
987 The `http2stream.sendTrailers()` method can then be called to send trailing992 `http2stream.sendTrailers()` or `http2stream.close()` to close the1423 #### `http2stream.sendTrailers(headers)`1444 stream.sendTrailers({ xyz: 'abc' });1666 of payload data to be sent. The `http2stream.sendTrailers()` method can then be1671 `http2stream.sendTrailers()` or `http2stream.close()` to close the1680 stream.sendTrailers({ ABC: 'some value to send' });1759 sent. The `http2stream.sendTrailers()` method can then be used to sent trailing1764 `http2stream.sendTrailers()` or `http2stream.close()` to close the1783 stream.sendTrailers({ ABC: 'some value to send' });[all …]
1737 The `http2stream.sendTrailers()` method cannot be called until after the
450 this.sendTrailers(this[kResponse][kTrailers]);
435 stream.sendTrailers({});2243 sendTrailers(headers) { method in Http2Stream