Uses of Interface
io.netty5.handler.stream.ChunkedInput
-
Packages that use ChunkedInput Package Description io.netty5.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty5.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.io.netty5.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames.io.netty5.handler.stream Writes very large data stream asynchronously neither spending a lot of memory nor gettingOutOfMemoryError
. -
-
Uses of ChunkedInput in io.netty5.handler.codec.http
Classes in io.netty5.handler.codec.http that implement ChunkedInput Modifier and Type Class Description class
HttpChunkedInput
AChunkedInput
that fetches data chunk by chunk for use with HTTP chunked transfers.Constructors in io.netty5.handler.codec.http with parameters of type ChunkedInput Constructor Description HttpChunkedInput(ChunkedInput<Buffer> input, LastHttpContent<?> lastHttpContent)
Creates a new instance using the specified input. -
Uses of ChunkedInput in io.netty5.handler.codec.http.websocketx
Classes in io.netty5.handler.codec.http.websocketx that implement ChunkedInput Modifier and Type Class Description class
WebSocketChunkedInput
AChunkedInput
that fetches data chunk by chunk for use with WebSocket chunked transfers.Constructors in io.netty5.handler.codec.http.websocketx with parameters of type ChunkedInput Constructor Description WebSocketChunkedInput(ChunkedInput<Buffer> input)
Creates a new instance using the specified input.WebSocketChunkedInput(ChunkedInput<Buffer> input, int rsv)
Creates a new instance using the specified input. -
Uses of ChunkedInput in io.netty5.handler.codec.http2
Classes in io.netty5.handler.codec.http2 that implement ChunkedInput Modifier and Type Class Description class
Http2DataChunkedInput
AChunkedInput
that fetches data chunk by chunk for use with HTTP/2 Data Frames.Constructors in io.netty5.handler.codec.http2 with parameters of type ChunkedInput Constructor Description Http2DataChunkedInput(ChunkedInput<Buffer> input, Http2FrameStream stream)
Creates a new instance using the specified input. -
Uses of ChunkedInput in io.netty5.handler.stream
Classes in io.netty5.handler.stream that implement ChunkedInput Modifier and Type Class Description class
ChunkedFile
AChunkedInput
that fetches data from a file chunk by chunk.class
ChunkedNioFile
AChunkedInput
that fetches data from a file chunk by chunk using NIOFileChannel
.class
ChunkedNioStream
AChunkedInput
that fetches data from aReadableByteChannel
chunk by chunk.class
ChunkedStream
AChunkedInput
that fetches data from anInputStream
chunk by chunk.
-