Uses of Interface
io.netty.handler.stream.ChunkedInput
Packages that use ChunkedInput
Package
Description
Encoder, decoder and their related message types for HTTP.
HTTP multipart support.
Encoder, decoder, handshakers and their related message types for
Web Socket data frames.
Handlers for sending and receiving HTTP/2 frames.
Writes very large data stream asynchronously neither spending a lot of
memory nor getting
OutOfMemoryError.-
Uses of ChunkedInput in io.netty.handler.codec.http
Classes in io.netty.handler.codec.http that implement ChunkedInputModifier and TypeClassDescriptionclassAChunkedInputthat fetches data chunk by chunk for use with HTTP chunked transfers.Constructors in io.netty.handler.codec.http with parameters of type ChunkedInputModifierConstructorDescriptionHttpChunkedInput(ChunkedInput<ByteBuf> input) Creates a new instance using the specified input.HttpChunkedInput(ChunkedInput<ByteBuf> input, LastHttpContent lastHttpContent) Creates a new instance using the specified input. -
Uses of ChunkedInput in io.netty.handler.codec.http.multipart
Classes in io.netty.handler.codec.http.multipart that implement ChunkedInputModifier and TypeClassDescriptionclassThis encoder will help to encode Request for a FORM as POST. -
Uses of ChunkedInput in io.netty.handler.codec.http.websocketx
Classes in io.netty.handler.codec.http.websocketx that implement ChunkedInputModifier and TypeClassDescriptionfinal classAChunkedInputthat fetches data chunk by chunk for use with WebSocket chunked transfers.Constructors in io.netty.handler.codec.http.websocketx with parameters of type ChunkedInputModifierConstructorDescriptionWebSocketChunkedInput(ChunkedInput<ByteBuf> input) Creates a new instance using the specified input.WebSocketChunkedInput(ChunkedInput<ByteBuf> input, int rsv) Creates a new instance using the specified input. -
Uses of ChunkedInput in io.netty.handler.codec.http2
Classes in io.netty.handler.codec.http2 that implement ChunkedInputModifier and TypeClassDescriptionfinal classAChunkedInputthat fetches data chunk by chunk for use with HTTP/2 Data Frames.Constructors in io.netty.handler.codec.http2 with parameters of type ChunkedInputModifierConstructorDescriptionHttp2DataChunkedInput(ChunkedInput<ByteBuf> input, Http2FrameStream stream) Creates a new instance using the specified input. -
Uses of ChunkedInput in io.netty.handler.stream
Classes in io.netty.handler.stream that implement ChunkedInputModifier and TypeClassDescriptionclassAChunkedInputthat fetches data from a file chunk by chunk.classAChunkedInputthat fetches data from a file chunk by chunk using NIOFileChannel.classAChunkedInputthat fetches data from aReadableByteChannelchunk by chunk.classAChunkedInputthat fetches data from anInputStreamchunk by chunk.