Http2Session.setLocalWindowSize - Node documentation
method Http2Session.setLocalWindowSize

Usage in Deno

import { type Http2Session } from "node:http2";
Http2Session.setLocalWindowSize(windowSize: number): void

Sets the local endpoint's window size. The windowSize is the total window size to set, not the delta.

const http2 = require('node:http2');

const server = http2.createServer();
const expectedWindowSize = 2 ** 20;
server.on('connect', (session) => {

  // Set local window size to be 2 ** 20
  session.setLocalWindowSize(expectedWindowSize);
});

Parameters

windowSize: number

Return Type

void