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.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.Fields in io.netty.handler.codec.http declared as ChunkedInput Modifier and Type Field Description private ChunkedInput<ByteBuf>HttpChunkedInput. inputConstructors 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.Fields in io.netty.handler.codec.http.websocketx declared as ChunkedInput Modifier and Type Field Description private ChunkedInput<ByteBuf>WebSocketChunkedInput. inputConstructors 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.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.Methods in io.netty.handler.stream with parameters of type ChunkedInput Modifier and Type Method Description private static voidChunkedWriteHandler. closeInput(ChunkedInput<?> chunks)
-