Module io.netty5.handler
Package io.netty5.handler.stream
Writes very large data stream asynchronously neither spending a lot of
memory nor getting
OutOfMemoryError. For a detailed
example, please refer to io.netty5.example.http.file.-
Interface Summary Interface Description ChunkedInput<B> A data stream of indefinite length which is consumed byChunkedWriteHandler. -
Class Summary Class Description ChunkedFile AChunkedInputthat fetches data from a file chunk by chunk.ChunkedNioFile AChunkedInputthat fetches data from a file chunk by chunk using NIOFileChannel.ChunkedNioStream AChunkedInputthat fetches data from aReadableByteChannelchunk by chunk.ChunkedStream AChunkedInputthat fetches data from anInputStreamchunk by chunk.ChunkedWriteHandler AChannelHandlerthat adds support for writing a large data stream asynchronously neither spending a lot of memory nor gettingOutOfMemoryError.