@@ -22,6 +22,7 @@ For the code of the current stable 0.4.x release, checkout the
2222* [ Install] ( #install )
2323* [ Tests] ( #tests )
2424* [ License] ( #license )
25+ * [ More] ( #more )
2526
2627## Quickstart example
2728
@@ -293,6 +294,11 @@ See also [example #3](examples).
293294
294295### addReadStream()
295296
297+ > Advanced! Note that this low-level API is considered advanced usage.
298+ Most use cases should probably use the higher-level
299+ [ readable Stream API] ( https://github.com/reactphp/stream#readablestreaminterface )
300+ instead.
301+
296302The ` addReadStream(resource $stream, callable $callback): void ` method can be used to
297303register a listener to be notified when a stream is ready to read.
298304
@@ -331,6 +337,11 @@ the same time is not guaranteed.
331337
332338### addWriteStream()
333339
340+ > Advanced! Note that this low-level API is considered advanced usage.
341+ Most use cases should probably use the higher-level
342+ [ writable Stream API] ( https://github.com/reactphp/stream#writablestreaminterface )
343+ instead.
344+
334345The ` addWriteStream(resource $stream, callable $callback): void ` method can be used to
335346register a listener to be notified when a stream is ready to write.
336347
@@ -420,3 +431,11 @@ $ php vendor/bin/phpunit
420431## License
421432
422433MIT, see [ LICENSE file] ( LICENSE ) .
434+
435+ ## More
436+
437+ * See our [ Stream component] ( https://github.com/reactphp/stream ) for more
438+ information on how streams are used in real-world applications.
439+ * See our [ users wiki] ( https://github.com/reactphp/react/wiki/Users ) and the
440+ [ dependents on Packagist] ( https://packagist.org/packages/react/event-loop/dependents )
441+ for a list of packages that use the EventLoop in real-world applications.
0 commit comments