Http3SettingsFrame.java — netty Source File
Architecture documentation for Http3SettingsFrame.java, a java file in the netty codebase.
Entity Profile
Relationship Graph
Source Code
/*
* Copyright 2020 The Netty Project
*
* The Netty Project licenses this file to you under the Apache License,
* version 2.0 (the "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at:
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
package io.netty.handler.codec.http3;
import org.jetbrains.annotations.Nullable;
import java.util.Map;
/**
* See <a href="https://tools.ietf.org/html/draft-ietf-quic-http-32#section-7.2.4">SETTINGS</a>.
*/
public interface Http3SettingsFrame extends Http3ControlStreamFrame, Iterable<Map.Entry<Long, Long>> {
/**
* @deprecated Use {@link Http3SettingIdentifier#HTTP3_SETTINGS_QPACK_MAX_TABLE_CAPACITY} instead.
* See <a href="https://tools.ietf.org/html/draft-ietf-quic-qpack-19#section-5">
* SETTINGS_QPACK_MAX_TABLE_CAPACITY</a>.
*/
@Deprecated
long HTTP3_SETTINGS_QPACK_MAX_TABLE_CAPACITY = Http3SettingIdentifier.HTTP3_SETTINGS_QPACK_MAX_TABLE_CAPACITY.id();
/**
* @deprecated Use {@link Http3SettingIdentifier#HTTP3_SETTINGS_QPACK_BLOCKED_STREAMS} instead.
* See <a href="https://tools.ietf.org/html/draft-ietf-quic-qpack-19#section-5">
* SETTINGS_QPACK_BLOCKED_STREAMS</a>.
*/
@Deprecated
long HTTP3_SETTINGS_QPACK_BLOCKED_STREAMS = Http3SettingIdentifier.HTTP3_SETTINGS_QPACK_BLOCKED_STREAMS.id();
/**
* @deprecated Use {@link Http3SettingIdentifier#HTTP3_SETTINGS_ENABLE_CONNECT_PROTOCOL} instead.
* See <a href="https://www.rfc-editor.org/rfc/rfc9220.html#section-5">
* SETTINGS_ENABLE_CONNECT_PROTOCOL</a>.
*/
@Deprecated
long HTTP3_SETTINGS_ENABLE_CONNECT_PROTOCOL = Http3SettingIdentifier.HTTP3_SETTINGS_ENABLE_CONNECT_PROTOCOL.id();
/**
* @deprecated Use {@link Http3SettingIdentifier#HTTP3_SETTINGS_MAX_FIELD_SECTION_SIZE} instead.
* See <a href="https://tools.ietf.org/html/draft-ietf-quic-http-32#section-7.2.4.1">
* SETTINGS_MAX_FIELD_SECTION_SIZE</a>.
*/
@Deprecated
long HTTP3_SETTINGS_MAX_FIELD_SECTION_SIZE = Http3SettingIdentifier.HTTP3_SETTINGS_MAX_FIELD_SECTION_SIZE.id();
default Http3Settings settings() {
throw new UnsupportedOperationException(
"Http3SettingsFrame.settings() not implemented in this version");
}
@Override
default long type() {
return Http3CodecUtils.HTTP3_SETTINGS_FRAME_TYPE;
}
/**
* Get a setting from the frame.
*
* @param key the key of the setting.
* @return the value of the setting or {@code null} if none was found with the given key.
* @deprecated Use typed accessors via {@link #settings()} instead.
* For example, {@code frame.settings().connectProtocolEnabled()}.
*/
@Deprecated
@Nullable
default Long get(long key) {
return settings().get(key);
}
/**
* Get a setting from the frame.
*
* @param key the key of the setting.
* @param defaultValue If the setting does not exist.
* @return the value of the setting or {@code defaultValue} if none was found with the given key.
* @deprecated Use typed accessors via {@link #settings()} instead.
* * For example, {@code frame.settings().qpackBlockedStreams()}.
*/
@Deprecated
default Long getOrDefault(long key, long defaultValue) {
final Long val = get(key);
return val == null ? defaultValue : val;
}
/**
* Put a setting in the frame.
*
* @param key the key of the setting
* @param value the value of the setting.
* @return the previous stored valued for the given key or {@code null} if none was stored before.
* @deprecated Use typed accessors via {@link #settings()} instead.
* * For example, {@code frame.settings().enableConnectProtocol(true)}.
*/
@Nullable
default Long put(long key, Long value) {
return settings().put(key, value);
}
}
Types
Source
Frequently Asked Questions
What does Http3SettingsFrame.java do?
Http3SettingsFrame.java is a source file in the netty codebase, written in java.
Where is Http3SettingsFrame.java in the architecture?
Http3SettingsFrame.java is located at codec-http3/src/main/java/io/netty/handler/codec/http3/Http3SettingsFrame.java (directory: codec-http3/src/main/java/io/netty/handler/codec/http3).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free