@@ -22,6 +22,7 @@ For the code of the current stable 0.4.x release, checkout the
22
22
* [ Install] ( #install )
23
23
* [ Tests] ( #tests )
24
24
* [ License] ( #license )
25
+ * [ More] ( #more )
25
26
26
27
## Quickstart example
27
28
@@ -293,6 +294,11 @@ See also [example #3](examples).
293
294
294
295
### addReadStream()
295
296
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
+
296
302
The ` addReadStream(resource $stream, callable $callback): void ` method can be used to
297
303
register a listener to be notified when a stream is ready to read.
298
304
@@ -331,6 +337,11 @@ the same time is not guaranteed.
331
337
332
338
### addWriteStream()
333
339
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
+
334
345
The ` addWriteStream(resource $stream, callable $callback): void ` method can be used to
335
346
register a listener to be notified when a stream is ready to write.
336
347
@@ -420,3 +431,11 @@ $ php vendor/bin/phpunit
420
431
## License
421
432
422
433
MIT, 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