Class Http3ClientConnectionHandler

  • All Implemented Interfaces:
    io.netty.channel.ChannelHandler, io.netty.channel.ChannelInboundHandler

    public final class Http3ClientConnectionHandler
    extends Http3ConnectionHandler
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface io.netty.channel.ChannelHandler

        io.netty.channel.ChannelHandler.Sharable
    • Constructor Summary

      Constructors 
      Constructor Description
      Http3ClientConnectionHandler()
      Create a new instance.
      Http3ClientConnectionHandler​(@Nullable io.netty.channel.ChannelHandler inboundControlStreamHandler, @Nullable LongFunction<io.netty.channel.ChannelHandler> pushStreamHandlerFactory, @Nullable LongFunction<io.netty.channel.ChannelHandler> unknownInboundStreamHandlerFactory, @Nullable Http3SettingsFrame localSettings, boolean disableQpackDynamicTable)
      Create a new instance.
    • Constructor Detail

      • Http3ClientConnectionHandler

        public Http3ClientConnectionHandler()
        Create a new instance.
      • Http3ClientConnectionHandler

        public Http3ClientConnectionHandler​(@Nullable
                                            @Nullable io.netty.channel.ChannelHandler inboundControlStreamHandler,
                                            @Nullable
                                            @Nullable LongFunction<io.netty.channel.ChannelHandler> pushStreamHandlerFactory,
                                            @Nullable
                                            @Nullable LongFunction<io.netty.channel.ChannelHandler> unknownInboundStreamHandlerFactory,
                                            @Nullable
                                            @Nullable Http3SettingsFrame localSettings,
                                            boolean disableQpackDynamicTable)
        Create a new instance.
        Parameters:
        inboundControlStreamHandler - the ChannelHandler which will be notified about Http3RequestStreamFrames or null if the user is not interested in these.
        pushStreamHandlerFactory - the LongFunction that will provide a custom ChannelHandler for push streams null if no special handling should be done. When present, push ID will be passed as an argument to the LongFunction.
        unknownInboundStreamHandlerFactory - the LongFunction that will provide a custom ChannelHandler for unknown inbound stream types or null if no special handling should be done.
        localSettings - the local Http3SettingsFrame that should be sent to the remote peer or null if the default settings should be used.
        disableQpackDynamicTable - If QPACK dynamic table should be disabled.