Http3UnidirectionalStreamInboundHandler() — netty Function Reference
Architecture documentation for the Http3UnidirectionalStreamInboundHandler() function in Http3UnidirectionalStreamInboundHandler.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 6f49b086_4496_64c5_f1f3_2723b39ac1a8["Http3UnidirectionalStreamInboundHandler()"] 36d5bd43_dd1d_08a7_bad2_6e9b8c3d046d["Http3UnidirectionalStreamInboundHandler"] 6f49b086_4496_64c5_f1f3_2723b39ac1a8 -->|defined in| 36d5bd43_dd1d_08a7_bad2_6e9b8c3d046d style 6f49b086_4496_64c5_f1f3_2723b39ac1a8 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http3/src/main/java/io/netty/handler/codec/http3/Http3UnidirectionalStreamInboundHandler.java lines 58–76
Http3UnidirectionalStreamInboundHandler(Http3FrameCodecFactory codecFactory,
NonStandardHttp3SettingsValidator nonStandardSettingsValidator,
Http3ControlStreamInboundHandler localControlStreamHandler,
Http3ControlStreamOutboundHandler remoteControlStreamHandler,
@Nullable LongFunction<ChannelHandler> unknownStreamHandlerFactory,
Supplier<ChannelHandler> qpackEncoderHandlerFactory,
Supplier<ChannelHandler> qpackDecoderHandlerFactory) {
this.codecFactory = codecFactory;
this.nonStandardSettingsValidator = nonStandardSettingsValidator;
this.localControlStreamHandler = localControlStreamHandler;
this.remoteControlStreamHandler = remoteControlStreamHandler;
this.qpackEncoderHandlerFactory = qpackEncoderHandlerFactory;
this.qpackDecoderHandlerFactory = qpackDecoderHandlerFactory;
if (unknownStreamHandlerFactory == null) {
// If the user did not specify an own factory just drop all bytes on the floor.
unknownStreamHandlerFactory = type -> ReleaseHandler.INSTANCE;
}
this.unknownStreamHandlerFactory = unknownStreamHandlerFactory;
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does Http3UnidirectionalStreamInboundHandler() do?
Http3UnidirectionalStreamInboundHandler() is a function in the netty codebase, defined in codec-http3/src/main/java/io/netty/handler/codec/http3/Http3UnidirectionalStreamInboundHandler.java.
Where is Http3UnidirectionalStreamInboundHandler() defined?
Http3UnidirectionalStreamInboundHandler() is defined in codec-http3/src/main/java/io/netty/handler/codec/http3/Http3UnidirectionalStreamInboundHandler.java at line 58.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free