chunked_stream 1.4.2 chunked_stream: ^1.4.2 copied to clipboard
Utilities for working with chunked streams, such as byte streams which is often given as a stream of byte chunks with type `Stream<List<int>>`.
v1.4.2 #
- Added
topics
topubspec.yaml
.
v1.4.1 #
- Deprecating
ChunkedStreamIterator
in favor ofChunkedStreamReader
frompackage:async
version^2.6.0
.
v1.4.0 #
- Stable null-safety release
v1.4.0-nullsafety.0 #
- Added
readByteStream
which usesBytesBuilder
fromdart:typed_data
under the hood. - Added
readBytes
toChunkedStreamIterator<int>
for reading byte streams intoUint8List
. - Added
@sealed
annotation to all exported classes.
v1.3.0-nullsafety.0 #
- Migrated to null safety
v1.2.0 #
- Changed
ChunkedStreamIterator
implementation to fix bugs related to stream pausing and resuming.
v1.1.0 #
- Added
asChunkedStream(N, input)
for wrapping aStream<T>
as a chunked streamStream<List<T>>
, which is useful when batch processing chunks of a stream.
v1.0.1 #
- Fixed lints reported by pana.
v1.0.0 #
- Initial release.