QuicClientExample Class — netty Architecture
Architecture documentation for the QuicClientExample class in QuicClientExample.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD ad12df73_23aa_4eee_fc71_951747c5642c["QuicClientExample"] fdf17883_0ddc_fa60_8cd1_7c2bdc022370["QuicClientExample.java"] ad12df73_23aa_4eee_fc71_951747c5642c -->|defined in| fdf17883_0ddc_fa60_8cd1_7c2bdc022370 74f56de6_a314_e8d7_d667_5bc659530791["QuicClientExample()"] ad12df73_23aa_4eee_fc71_951747c5642c -->|method| 74f56de6_a314_e8d7_d667_5bc659530791 79a9a77e_64cb_21c0_fb47_36a565f0232c["main()"] ad12df73_23aa_4eee_fc71_951747c5642c -->|method| 79a9a77e_64cb_21c0_fb47_36a565f0232c
Relationship Graph
Source Code
codec-native-quic/src/test/java/io/netty/handler/codec/quic/example/QuicClientExample.java lines 43–113
public final class QuicClientExample {
private QuicClientExample() { }
public static void main(String[] args) throws Exception {
QuicSslContext context = QuicSslContextBuilder.forClient().trustManager(InsecureTrustManagerFactory.INSTANCE).
applicationProtocols("http/0.9").build();
EventLoopGroup group = new MultiThreadIoEventLoopGroup(1, NioIoHandler.newFactory());
try {
ChannelHandler codec = new QuicClientCodecBuilder()
.sslContext(context)
.maxIdleTimeout(5000, TimeUnit.MILLISECONDS)
.initialMaxData(10000000)
// As we don't want to support remote initiated streams just setup the limit for local initiated
// streams in this example.
.initialMaxStreamDataBidirectionalLocal(1000000)
.build();
Bootstrap bs = new Bootstrap();
Channel channel = bs.group(group)
.channel(NioDatagramChannel.class)
.handler(codec)
.bind(0).sync().channel();
QuicChannel quicChannel = QuicChannel.newBootstrap(channel)
.streamHandler(new ChannelInboundHandlerAdapter() {
@Override
public void channelActive(ChannelHandlerContext ctx) {
// As we did not allow any remote initiated streams we will never see this method called.
// That said just let us keep it here to demonstrate that this handle would be called
// for each remote initiated stream.
ctx.close();
}
})
.remoteAddress(new InetSocketAddress(NetUtil.LOCALHOST4, 9999))
.connect()
.get();
QuicStreamChannel streamChannel = quicChannel.createStream(QuicStreamType.BIDIRECTIONAL,
new ChannelInboundHandlerAdapter() {
@Override
public void channelRead(ChannelHandlerContext ctx, Object msg) {
ByteBuf byteBuf = (ByteBuf) msg;
System.err.println(byteBuf.toString(CharsetUtil.US_ASCII));
byteBuf.release();
}
@Override
public void userEventTriggered(ChannelHandlerContext ctx, Object evt) {
if (evt == ChannelInputShutdownReadComplete.INSTANCE) {
// Close the connection once the remote peer did send the FIN for this stream.
((QuicChannel) ctx.channel().parent()).close(true, 0,
ctx.alloc().directBuffer(16)
.writeBytes(new byte[]{'k', 't', 'h', 'x', 'b', 'y', 'e'}));
}
}
}).sync().getNow();
// Write the data and send the FIN. After this its not possible anymore to write any more data.
streamChannel.writeAndFlush(Unpooled.copiedBuffer("GET /\r\n", CharsetUtil.US_ASCII))
.addListener(QuicStreamChannel.SHUTDOWN_OUTPUT);
// Wait for the stream channel and quic channel to be closed (this will happen after we received the FIN).
// After this is done we will close the underlying datagram channel.
streamChannel.closeFuture().sync();
quicChannel.closeFuture().sync();
channel.close().sync();
} finally {
group.shutdownGracefully();
}
}
}
Defined In
Source
Frequently Asked Questions
What is the QuicClientExample class?
QuicClientExample is a class in the netty codebase, defined in codec-native-quic/src/test/java/io/netty/handler/codec/quic/example/QuicClientExample.java.
Where is QuicClientExample defined?
QuicClientExample is defined in codec-native-quic/src/test/java/io/netty/handler/codec/quic/example/QuicClientExample.java at line 43.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free