Interface PriorityParam

Represents parameters for setting priority of HTTP/2 streams.

interface PriorityParam {
    exclusive: boolean;
    streamDep: number;
    weight: number;
}

Properties

exclusive: boolean

Indicates whether the priority is exclusive.

streamDep: number

The stream dependency for priority.

weight: number

The weight of the priority.