Http3UnidirectionalStreamInboundHandler() — netty Function Reference
Architecture documentation for the Http3UnidirectionalStreamInboundHandler() function in Http3UnidirectionalStreamInboundHandlerTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD c808fa8e_432e_bec7_aae3_2263baf21af3["Http3UnidirectionalStreamInboundHandler()"] 25ca3b24_17b0_d7c2_ddbd_1036d0071d78["Http3UnidirectionalStreamInboundHandlerTest"] c808fa8e_432e_bec7_aae3_2263baf21af3 -->|defined in| 25ca3b24_17b0_d7c2_ddbd_1036d0071d78 style c808fa8e_432e_bec7_aae3_2263baf21af3 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http3/src/test/java/io/netty/handler/codec/http3/Http3UnidirectionalStreamInboundHandlerTest.java lines 264–284
private Http3UnidirectionalStreamInboundHandler newUniStreamInboundHandler(boolean server,
@Nullable LongFunction<ChannelHandler> unknownStreamHandlerFactory) {
return server ?
new Http3UnidirectionalStreamInboundServerHandler((v, __, ___, ____) -> new CodecHandler(),
(id, v) -> false,
localControlStreamHandler, remoteControlStreamHandler, unknownStreamHandlerFactory,
() -> new QpackEncoderHandler((long) Integer.MAX_VALUE, qpackDecoder),
() -> new QpackDecoderHandler(qpackEncoder)) :
new Http3UnidirectionalStreamInboundClientHandler((v, __, ___, ____) -> new CodecHandler(),
(id, v) -> false,
localControlStreamHandler, remoteControlStreamHandler,
unknownStreamHandlerFactory,
pushId -> new Http3PushStreamClientInitializer() {
@Override
protected void initPushStream(QuicStreamChannel ch) {
ch.pipeline().addLast(new CodecHandler());
}
},
() -> new QpackEncoderHandler((long) Integer.MAX_VALUE,
qpackDecoder), () -> new QpackDecoderHandler(qpackEncoder));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does Http3UnidirectionalStreamInboundHandler() do?
Http3UnidirectionalStreamInboundHandler() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3UnidirectionalStreamInboundHandlerTest.java.
Where is Http3UnidirectionalStreamInboundHandler() defined?
Http3UnidirectionalStreamInboundHandler() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3UnidirectionalStreamInboundHandlerTest.java at line 264.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free