public interface Http3SettingsFrame extends Http3ControlStreamFrame, Iterable<Map.Entry<Long,Long>>
| Modifier and Type | Field and Description |
|---|---|
static long |
HTTP3_SETTINGS_MAX_FIELD_SECTION_SIZE
|
static long |
HTTP3_SETTINGS_QPACK_BLOCKED_STREAMS
|
static long |
HTTP3_SETTINGS_QPACK_MAX_TABLE_CAPACITY
|
| Modifier and Type | Method and Description |
|---|---|
Long |
get(long key)
Get a setting from the frame.
|
default Long |
getOrDefault(long key,
long defaultValue)
Get a setting from the frame.
|
Long |
put(long key,
Long value)
Put a setting in the frame.
|
default long |
type()
The type of the frame.
|
forEach, iterator, spliteratorstatic final long HTTP3_SETTINGS_QPACK_MAX_TABLE_CAPACITY
static final long HTTP3_SETTINGS_QPACK_BLOCKED_STREAMS
static final long HTTP3_SETTINGS_MAX_FIELD_SECTION_SIZE
default long type()
Http3Frametype in interface Http3FrameLong get(long key)
key - the key of the setting.null if none was found with the given key.default Long getOrDefault(long key, long defaultValue)
key - the key of the setting.defaultValue - If the setting does not exist.defaultValue if none was found with the given key.Copyright © 2020–2022 The Netty Project. All rights reserved.