Skip to content

Tags: qa1/byte-stream

Tags

v1.5.1

Toggle v1.5.1's commit message

Verified

This tag was signed with the committer’s verified signature.
kelunik Niklas Keller
v1.5.1

 - Fixed broken symlink in release tars.

v1.5.0

Toggle v1.5.0's commit message

Verified

This commit was signed with the committer’s verified signature. The key has expired.
trowski Aaron Piotrowski
Solve performance issues with very large chunks

Very large chunks need to be copied every time there's a partial write, which is pretty problematic. Instead of doing an almost full copy of the full chunk every time, this patch splits very large chunks into multiple smaller chunks automatically.

Fixes amphp#41.

v1.4.0

Toggle v1.4.0's commit message

Verified

This tag was signed with the committer’s verified signature.
kelunik Niklas Keller
v1.4.0

 - Added `Amp\ByteStream\buffer()`

v1.3.1

Toggle v1.3.1's commit message

Verified

This tag was signed with the committer’s verified signature. The key has expired.
trowski Aaron Piotrowski

v1.3.0

Toggle v1.3.0's commit message

Verified

This commit was signed with the committer’s verified signature. The key has expired.
trowski Aaron Piotrowski
Update docs nav

v1.2.5

Toggle v1.2.5's commit message

Verified

This tag was signed with the committer’s verified signature.
kelunik Niklas Keller
v1.2.5

 - Fixed issue with `ResourceInputStream` (amphp#38)

v1.2.4

Toggle v1.2.4's commit message

Verified

This tag was signed with the committer’s verified signature.
kelunik Niklas Keller
v1.2.4

 - Fixed issue with immediate reads, which could result in a blocking loop in combination with immediate writes. Such a situation is only likely on pipes or files, network sockets are probably not affected here, unless they receive data very quickly. Reads now deferred to the next tick in case they're immediate. (amphp#37)

v1.2.3

Toggle v1.2.3's commit message

Verified

This tag was signed with the committer’s verified signature.
kelunik Niklas Keller
v1.2.3

 - Fixed wrong exception being thrown for writing to closed `ResourceOutputStream` (amphp#35)
 - Fixed performance issue with `STDIN` on Windows. This might also improve performance for other streams.
 - Fixed condition to detect a broken pipe in `ResourceOutputStream`.

v1.2.2

Toggle v1.2.2's commit message

Verified

This tag was signed with the committer’s verified signature.
kelunik Niklas Keller
v1.2.2

 - Polyfill `STDOUT` and `STDERR` for SAPIs not being CLI. (amphp#34)
 - Correctly throw a `PendingReadError` in `IteratorStream` if a previous read is still pending.

v1.2.1

Toggle v1.2.1's commit message

Verified

This tag was signed with the committer’s verified signature.
kelunik Niklas Keller
v1.2.1

 - Suppress errors for `feof`, because pthreads. (amphp#32)