Package software.amazon.awssdk.crt.http
Class Http2ConnectionSetting
- java.lang.Object
-
- software.amazon.awssdk.crt.http.Http2ConnectionSetting
-
public class Http2ConnectionSetting extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Http2ConnectionSetting.ID
Predefined settings identifiers (RFC-7540 6.5.2).
-
Constructor Summary
Constructors Constructor Description Http2ConnectionSetting(Http2ConnectionSetting.ID id, long value)
HTTP/2 connection setting.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Http2ConnectionSettingListBuilder
builder()
Helper to build a List of Http2ConnectionSettingHttp2ConnectionSetting.ID
getId()
long
getValue()
-
-
-
Constructor Detail
-
Http2ConnectionSetting
public Http2ConnectionSetting(Http2ConnectionSetting.ID id, long value)
HTTP/2 connection setting.- Parameters:
id
- Predefined settings identifiers (RFC-7540 6.5.2).value
- The value of the setting, limited from 0 to UINT32_MAX (RFC-7540 6.5.1)
-
-
Method Detail
-
getValue
public long getValue()
-
getId
public Http2ConnectionSetting.ID getId()
-
builder
public static Http2ConnectionSettingListBuilder builder()
Helper to build a List of Http2ConnectionSetting- Returns:
Http2ConnectionSettingListBuilder
-
-