Uses of Interface
io.netty.handler.stream.ChunkedInput
-
Packages that use ChunkedInput Package Description io.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty.handler.codec.http.multipart HTTP multipart support.io.netty.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames.io.netty.handler.stream Writes very large data stream asynchronously neither spending a lot of memory nor gettingOutOfMemoryError. -
-
Uses of ChunkedInput in io.netty.handler.codec.http
Classes in io.netty.handler.codec.http that implement ChunkedInput Modifier and Type Class Description classHttpChunkedInputAChunkedInputthat fetches data chunk by chunk for use with HTTP chunked transfers.Constructors in io.netty.handler.codec.http with parameters of type ChunkedInput Constructor Description HttpChunkedInput(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 ChunkedInput Modifier and Type Class Description classHttpPostRequestEncoderThis 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 ChunkedInput Modifier and Type Class Description classWebSocketChunkedInputAChunkedInputthat fetches data chunk by chunk for use with WebSocket chunked transfers.Constructors in io.netty.handler.codec.http.websocketx with parameters of type ChunkedInput Constructor Description WebSocketChunkedInput(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 ChunkedInput Modifier and Type Class Description classHttp2DataChunkedInputAChunkedInputthat fetches data chunk by chunk for use with HTTP/2 Data Frames.Constructors in io.netty.handler.codec.http2 with parameters of type ChunkedInput Constructor Description Http2DataChunkedInput(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 ChunkedInput Modifier and Type Class Description classChunkedFileAChunkedInputthat fetches data from a file chunk by chunk.classChunkedNioFileAChunkedInputthat fetches data from a file chunk by chunk using NIOFileChannel.classChunkedNioStreamAChunkedInputthat fetches data from aReadableByteChannelchunk by chunk.classChunkedStreamAChunkedInputthat fetches data from anInputStreamchunk by chunk.
-