Class PriorityParams
- java.lang.Object
-
- org.apache.hc.core5.http2.priority.PriorityParams
-
@Internal public final class PriorityParams extends java.lang.Object
Presence-aware view for RFC 9218 Priority on responses.
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Booleanincrementalprivate java.lang.Integerurgency
-
Constructor Summary
Constructors Constructor Description PriorityParams(java.lang.Integer urgency, java.lang.Boolean incremental)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.BooleangetIncremental()java.lang.IntegergetUrgency()PriorityValuetoValueWithDefaults()Convert to concrete value by applying RFC defaults (u=3, i=false) for missing members.
-
-
-
Method Detail
-
getUrgency
public java.lang.Integer getUrgency()
-
getIncremental
public java.lang.Boolean getIncremental()
-
toValueWithDefaults
public PriorityValue toValueWithDefaults()
Convert to concrete value by applying RFC defaults (u=3, i=false) for missing members.
-
-