registerPushPromise method

void registerPushPromise(
  1. int pushId,
  2. Http3PushPromiseFrame frame
)

Register a push promise manually.

Implementation

void registerPushPromise(int pushId, Http3PushPromiseFrame frame) {
  _pushPromises[pushId] = frame;
}