1
0
mirror of https://github.com/danog/byte-stream.git synced 2024-11-27 04:14:49 +01:00
byte-stream/docs/resource-streams.md

519 B

title permalink
Resource Streams /resource-streams

This package abstracts PHP's stream resources with ResourceInputStream and ResourceOutputStream. They automatically set the passed resource to non-blocking and allow reading and writing like any other InputStream / OutputStream. They also handle backpressure automatically by disabling the read watcher in case there's no read request and only activate a write watcher if the underlying write buffer is already full, which makes them very efficient.