@@ -339,7 +339,7 @@ All of the event loops support these features:
339
339
340
340
For most consumers of this package, the underlying event loop implementation is
341
341
an implementation detail.
342
- You should use the [ ` Factory ` ] ( #factory ) to automatically create a new instance.
342
+ You should use the [ ` Loop ` class ] ( #loop ) to automatically create a new instance.
343
343
344
344
Advanced! If you explicitly need a certain event loop implementation, you can
345
345
manually instantiate one of the following classes.
@@ -356,8 +356,9 @@ function and is the only implementation which works out of the box with PHP.
356
356
This event loop works out of the box on PHP 5.3 through PHP 7+ and HHVM.
357
357
This means that no installation is required and this library works on all
358
358
platforms and supported PHP versions.
359
- Accordingly, the [ ` Factory ` ] ( #factory ) will use this event loop by default if
360
- you do not install any of the event loop extensions listed below.
359
+ Accordingly, the [ ` Loop ` class] ( #loop ) and the deprecated [ ` Factory ` ] ( #factory )
360
+ will use this event loop by default if you do not install any of the event loop
361
+ extensions listed below.
361
362
362
363
Under the hood, it does a simple ` select ` system call.
363
364
This system call is limited to the maximum file descriptor number of
@@ -433,8 +434,8 @@ This event loop does only work with PHP 5.
433
434
An [ unofficial update] ( https://github.com/php/pecl-event-libevent/pull/2 ) for
434
435
PHP 7 does exist, but it is known to cause regular crashes due to ` SEGFAULT ` s.
435
436
To reiterate: Using this event loop on PHP 7 is not recommended.
436
- Accordingly, the [ ` Factory ` ] ( #factory ) will not try to use this event loop on
437
- PHP 7.
437
+ Accordingly, neither the [ ` Loop ` object ] ( #loop ) nor the deprecated
438
+ [ ` Factory ` ] ( #factory ) will try to use this event loop on PHP 7.
438
439
439
440
This event loop is known to trigger a readable listener only if
440
441
the stream * becomes* readable (edge-triggered) and may not trigger if the
0 commit comments