Http3RequestStreamFrameTypeValidatorTest Class — netty Architecture
Architecture documentation for the Http3RequestStreamFrameTypeValidatorTest class in Http3RequestStreamFrameTypeValidatorTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 95ac3249_5f90_d26b_49e7_35d63fd5c2a1["Http3RequestStreamFrameTypeValidatorTest"] 6e5a11be_9c11_d4e4_1d2b_7dc2cd8a6562["Http3RequestStreamFrameTypeValidatorTest.java"] 95ac3249_5f90_d26b_49e7_35d63fd5c2a1 -->|defined in| 6e5a11be_9c11_d4e4_1d2b_7dc2cd8a6562 6be03016_c4c4_17b5_0fcf_16e76ed272a2["invalidFramesTypes()"] 95ac3249_5f90_d26b_49e7_35d63fd5c2a1 -->|method| 6be03016_c4c4_17b5_0fcf_16e76ed272a2 9342ea59_cc92_a8e1_afa5_7a742ef0a5f2["validFrameTypes()"] 95ac3249_5f90_d26b_49e7_35d63fd5c2a1 -->|method| 9342ea59_cc92_a8e1_afa5_7a742ef0a5f2 2e74eb07_1212_acae_9c7e_df782f17116d["Http3FrameTypeValidator()"] 95ac3249_5f90_d26b_49e7_35d63fd5c2a1 -->|method| 2e74eb07_1212_acae_9c7e_df782f17116d
Relationship Graph
Source Code
codec-http3/src/test/java/io/netty/handler/codec/http3/Http3RequestStreamFrameTypeValidatorTest.java lines 18–43
public class Http3RequestStreamFrameTypeValidatorTest extends Http3FrameTypeValidatorTest {
@Override
protected long[] invalidFramesTypes() {
return new long[] {
Http3CodecUtils.HTTP3_CANCEL_PUSH_FRAME_TYPE,
Http3CodecUtils.HTTP3_GO_AWAY_FRAME_TYPE,
Http3CodecUtils.HTTP3_MAX_PUSH_ID_FRAME_TYPE,
Http3CodecUtils.HTTP3_SETTINGS_FRAME_TYPE
};
}
@Override
protected long[] validFrameTypes() {
return new long[] {
Http3CodecUtils.HTTP3_DATA_FRAME_TYPE,
Http3CodecUtils.HTTP3_HEADERS_FRAME_TYPE,
Http3CodecUtils.HTTP3_PUSH_PROMISE_FRAME_TYPE
};
}
@Override
protected Http3FrameTypeValidator newValidator() {
return Http3RequestStreamFrameTypeValidator.INSTANCE;
}
}
Defined In
Source
Frequently Asked Questions
What is the Http3RequestStreamFrameTypeValidatorTest class?
Http3RequestStreamFrameTypeValidatorTest is a class in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3RequestStreamFrameTypeValidatorTest.java.
Where is Http3RequestStreamFrameTypeValidatorTest defined?
Http3RequestStreamFrameTypeValidatorTest is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3RequestStreamFrameTypeValidatorTest.java at line 18.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free