- Added
topics
topubspec.yaml
.
- Deprecating
ChunkedStreamIterator
in favor ofChunkedStreamReader
frompackage:async
version^2.6.0
.
- Stable null-safety release
- 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.
- Migrated to null safety
- Changed
ChunkedStreamIterator
implementation to fix bugs related to stream pausing and resuming.
- Added
asChunkedStream(N, input)
for wrapping aStream<T>
as a chunked streamStream<List<T>>
, which is useful when batch processing chunks of a stream.
- Fixed lints reported by pana.
- Initial release.