Skip to content

v0.5.3

Compare
Choose a tag to compare
@trowski trowski released this 21 Dec 04:43
· 13 commits to v0.5.x since this release

Added

  • Added an unshift() method to Icicle\Stream\MemoryStream, Icicle\Stream\Pipe\ReadablePipe, and Icicle\Stream\Pipe\DuplexPipe that puts data at the front of the stream. The data given to this method will be the first data read for any pending or subsequent read.

Changed

  • Simultaneous reads are now allowed on readable streams, fulfilling in the order they were created. Simultaneous reads will not fulfill with the same data, rather each is fulfilled independently with new data read from the stream.