Uses of Interface
io.netty.handler.codec.quic.QuicChannel
-
Packages that use QuicChannel Package Description io.netty.handler.codec.http3 HTTP/3 implementation.io.netty.handler.codec.quic QUIC implementation -
-
Uses of QuicChannel in io.netty.handler.codec.http3
Methods in io.netty.handler.codec.http3 with parameters of type QuicChannel Modifier and Type Method Description static Future<QuicStreamChannel>
Http3. newRequestStream(QuicChannel channel, ChannelHandler handler)
Returns a new HTTP/3 request-stream that will use the givenChannelHandler
to dispatchHttp3RequestStreamFrame
s too.static QuicStreamChannelBootstrap
Http3. newRequestStreamBootstrap(QuicChannel channel, ChannelHandler handler)
Returns a new HTTP/3 request-stream bootstrap that will use the givenChannelHandler
to dispatchHttp3RequestStreamFrame
s too.Constructors in io.netty.handler.codec.http3 with parameters of type QuicChannel Constructor Description Http3ServerPushStreamManager(QuicChannel channel)
Creates a new instance.Http3ServerPushStreamManager(QuicChannel channel, int initialPushStreamsCountHint)
Creates a new instance. -
Uses of QuicChannel in io.netty.handler.codec.quic
Methods in io.netty.handler.codec.quic that return QuicChannel Modifier and Type Method Description QuicChannel
QuicChannel. flush()
QuicChannel
QuicStreamChannel. parent()
QuicChannel
QuicChannel. read()
Methods in io.netty.handler.codec.quic that return types with arguments of type QuicChannel Modifier and Type Method Description Future<QuicChannel>
QuicChannelBootstrap. connect()
Connects aQuicChannel
to the remote peer and notifies the future once done.Future<QuicChannel>
QuicChannelBootstrap. connect(Promise<QuicChannel> promise)
Connects aQuicChannel
to the remote peer and notifies the promise once done.Method parameters in io.netty.handler.codec.quic with type arguments of type QuicChannel Modifier and Type Method Description Future<QuicChannel>
QuicChannelBootstrap. connect(Promise<QuicChannel> promise)
Connects aQuicChannel
to the remote peer and notifies the promise once done.B
QuicCodecBuilder. sslEngineProvider(java.util.function.Function<QuicChannel,? extends QuicSslEngine> sslEngineProvider)
-