ConfigurationMBean
, DescriptorBean
, javax.management.DynamicMBean
, javax.management.MBeanRegistration
, javax.management.NotificationBroadcaster
, SettableBean
, WebLogicMBean
public interface Http2ConfigMBean extends ConfigurationMBean
The local setting of an HTTP/2 connection on a web server.
Modifier and Type | Field | Description |
---|---|---|
static int |
DEFAULT_HEADER_TABLE_SIZE |
|
static int |
DEFAULT_INITIAL_WINDOW_SIZE |
|
static int |
DEFAULT_MAX_CONCURRENT_STREAMS |
|
static int |
DEFAULT_MAX_FRAME_SIZE |
|
static int |
DEFAULT_MAX_HEADER_LIST_SIZE |
DEFAULT_EMPTY_BYTE_ARRAY
Modifier and Type | Method | Description |
---|---|---|
int |
getContinuationFramesLimit() |
Gets the number of CONTINUATION frames allowed per stream.
|
int |
getFrameCountLimitResetInterval() |
Gets the frame count limit reset interval
|
int |
getHeaderTableSize() |
The server's maximum size of the header compression table used to
decode header blocks, in octets.
|
int |
getInitialWindowSize() |
The server's initial window size (in octets) for stream-level flow control.
|
int |
getMaxConcurrentStreams() |
The maximum number of concurrent streams that the server will allow.
|
int |
getMaxFrameSize() |
The size of the largest frame payload that the server is willing to receive,
in octets.
|
int |
getMaxHeaderListSize() |
The maximum size of header list that the server is prepared to accept,
in octets.
|
int |
getMaxStreamResets() |
Gets the maximum number of stream resets(RST_STREAM frames) allowed per connection.
|
void |
setContinuationFramesLimit(int continuationFramesLimit) |
Sets the number of CONTINUATION frames allowed per stream.
|
void |
setFrameCountLimitResetInterval(int interval) |
Sets the frame count limit reset interval
|
void |
setHeaderTableSize(int headerTableSize) |
Sets the server's maximum size of the header compression table used to
decode header blocks, in octets.
|
void |
setInitialWindowSize(int initialWindowSize) |
Sets the server's initial window size (in octets) for stream-level flow control.
|
void |
setMaxConcurrentStreams(int maxConcurrentStreams) |
Sets the maximum number of concurrent streams that the server will allow.
|
void |
setMaxFrameSize(int maxFrameSize) |
Sets the size of the largest frame payload that the server is willing to receive,
in octets.
|
void |
setMaxHeaderListSize(int maxHeaderListSize) |
Sets the maximum size of header list that the server is prepared to accept,
in octets.
|
void |
setMaxStreamResets(int maxStreamResets) |
Sets the maximum number of stream resets(RST_STREAM frames) allowed per connection.
|
freezeCurrentValue, getId, getInheritedProperties, getName, getNotes, isDynamicallyCreated, isInherited, isSet, restoreDefaultValue, setComments, setDefaultedMBean, setName, setNotes, setPersistenceEnabled, unSet
addPropertyChangeListener, createChildCopyIncludingObsolete, getParentBean, isEditable, removePropertyChangeListener
getAttribute, getAttributes, invoke, setAttribute, setAttributes
postDeregister, postRegister, preDeregister, preRegister
addNotificationListener, getNotificationInfo, removeNotificationListener
getMBeanInfo, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setParent
static final int DEFAULT_HEADER_TABLE_SIZE
static final int DEFAULT_MAX_CONCURRENT_STREAMS
static final int DEFAULT_INITIAL_WINDOW_SIZE
static final int DEFAULT_MAX_FRAME_SIZE
static final int DEFAULT_MAX_HEADER_LIST_SIZE
int getHeaderTableSize()
The server's maximum size of the header compression table used to decode header blocks, in octets.
setHeaderTableSize(int)
void setHeaderTableSize(int headerTableSize)
Sets the server's maximum size of the header compression table used to decode header blocks, in octets. It's used to inform the remote endpoint.
headerTableSize
- int getMaxConcurrentStreams()
The maximum number of concurrent streams that the server will allow. This limit is directional: it applies to the number of streams that the server permits the receiver to create.
setMaxConcurrentStreams(int)
void setMaxConcurrentStreams(int maxConcurrentStreams)
Sets the maximum number of concurrent streams that the server will allow. This limit is directional: it applies to the number of streams that the server permits the receiver to create.
maxConcurrentStreams
- int getInitialWindowSize()
The server's initial window size (in octets) for stream-level flow control. This setting affects the window size of all streams.
setInitialWindowSize(int)
void setInitialWindowSize(int initialWindowSize)
Sets the server's initial window size (in octets) for stream-level flow control. This setting affects the window size of all streams.
initialWindowSize
- int getMaxFrameSize()
The size of the largest frame payload that the server is willing to receive, in octets.
setMaxFrameSize(int)
void setMaxFrameSize(int maxFrameSize)
Sets the size of the largest frame payload that the server is willing to receive, in octets.
maxFrameSize
- int getMaxHeaderListSize()
The maximum size of header list that the server is prepared to accept, in octets. The value is based on the uncompressed size of header fields, including the length of the name and value in octets plus an overhead of 32 octets for each header field.
setMaxHeaderListSize(int)
void setMaxHeaderListSize(int maxHeaderListSize)
Sets the maximum size of header list that the server is prepared to accept, in octets. The value is based on the uncompressed size of header fields, including the length of the name and value in octets plus an overhead of 32 octets for each header field. It's used to inform the remote endpoint.
maxHeaderListSize
- int getMaxStreamResets()
Gets the maximum number of stream resets(RST_STREAM frames) allowed per connection.
setMaxStreamResets(int)
void setMaxStreamResets(int maxStreamResets)
Sets the maximum number of stream resets(RST_STREAM frames) allowed per connection.
maxStreamResets
- the number of stream resets(RST_STREAM frames)int getFrameCountLimitResetInterval()
Gets the frame count limit reset interval
setFrameCountLimitResetInterval(int)
void setFrameCountLimitResetInterval(int interval)
Sets the frame count limit reset interval
interval
- the frame count limit reset interval value in secondsint getContinuationFramesLimit()
Gets the number of CONTINUATION frames allowed per stream.
void setContinuationFramesLimit(int continuationFramesLimit)
Sets the number of CONTINUATION frames allowed per stream.
continuationFramesLimit
- the new limit