Uses of Class
io.netty.handler.codec.quic.QuicStreamChannelBootstrap
-
Packages that use QuicStreamChannelBootstrap Package Description io.netty.handler.codec.http3 HTTP/3 implementation.io.netty.handler.codec.quic QUIC implementation -
-
Uses of QuicStreamChannelBootstrap in io.netty.handler.codec.http3
Methods in io.netty.handler.codec.http3 that return QuicStreamChannelBootstrap Modifier and Type Method Description 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.Method parameters in io.netty.handler.codec.http3 with type arguments of type QuicStreamChannelBootstrap Modifier and Type Method Description void
Http3ServerPushStreamManager. newPushStream(long pushId, @Nullable ChannelHandler handler, java.util.function.UnaryOperator<QuicStreamChannelBootstrap> bootstrapConfigurator, Promise<QuicStreamChannel> promise)
Returns a new HTTP/3 push-stream that will use the givenChannelHandler
to dispatchHttp3PushStreamFrame
s too. -
Uses of QuicStreamChannelBootstrap in io.netty.handler.codec.quic
Methods in io.netty.handler.codec.quic that return QuicStreamChannelBootstrap Modifier and Type Method Description <T> QuicStreamChannelBootstrap
QuicStreamChannelBootstrap. attr(AttributeKey<T> key, T value)
Allow to specify an initial attribute of the newly createdQuicStreamChannel
.QuicStreamChannelBootstrap
QuicStreamChannelBootstrap. handler(ChannelHandler streamHandler)
default QuicStreamChannelBootstrap
QuicChannel. newStreamBootstrap()
Returns a newQuicStreamChannelBootstrap
which makes it easy to bootstrap newQuicStreamChannel
s with custom options and attributes.<T> QuicStreamChannelBootstrap
QuicStreamChannelBootstrap. option(ChannelOption<T> option, T value)
Allow to specify aChannelOption
which is used for theQuicStreamChannel
instances once they got created.QuicStreamChannelBootstrap
QuicStreamChannelBootstrap. type(QuicStreamType type)
-