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 AChunkedInput
that fetches data from a file chunk by chunk.ChunkedNioFile AChunkedInput
that fetches data from a file chunk by chunk using NIOFileChannel
.ChunkedNioStream AChunkedInput
that fetches data from aReadableByteChannel
chunk by chunk.ChunkedStream AChunkedInput
that fetches data from anInputStream
chunk by chunk.ChunkedWriteHandler AChannelHandler
that adds support for writing a large data stream asynchronously neither spending a lot of memory nor gettingOutOfMemoryError
.