@@ -22,9 +22,9 @@ For the code of the current stable 0.4.x release, checkout the
22
22
* [ create()] ( #create )
23
23
* [ Loop implementations] ( #loop-implementations )
24
24
* [ StreamSelectLoop] ( #streamselectloop )
25
- * [ LibEventLoop] ( #libeventloop )
26
- * [ LibEvLoop] ( #libevloop )
27
25
* [ ExtEventLoop] ( #exteventloop )
26
+ * [ ExtLibeventLoop] ( #extlibeventloop )
27
+ * [ ExtLibevLoop] ( #extlibevloop )
28
28
* [ LoopInterface] ( #loopinterface )
29
29
* [ addtimer()] ( #addtimer )
30
30
* [ addPeriodicTimer()] ( #addperiodictimer )
@@ -184,7 +184,16 @@ It is commonly installed as part of many PHP distributions.
184
184
If this extension is missing (or you're running on Windows), signal handling is
185
185
not supported and throws a ` BadMethodCallException ` instead.
186
186
187
- #### LibEventLoop
187
+ #### ExtEventLoop
188
+
189
+ An ` ext-event ` based event loop.
190
+
191
+ This uses the [ ` event ` PECL extension] ( https://pecl.php.net/package/event ) .
192
+ It supports the same backends as libevent.
193
+
194
+ This loop is known to work with PHP 5.4 through PHP 7+.
195
+
196
+ #### ExtLibeventLoop
188
197
189
198
An ` ext-libevent ` based event loop.
190
199
@@ -198,7 +207,7 @@ To reiterate: Using this event loop on PHP 7 is not recommended.
198
207
Accordingly, the [ ` Factory ` ] ( #factory ) will not try to use this event loop on
199
208
PHP 7.
200
209
201
- #### LibEvLoop
210
+ #### ExtLibevLoop
202
211
203
212
An ` ext-libev ` based event loop.
204
213
@@ -209,15 +218,6 @@ This loop does only work with PHP 5.
209
218
An update for PHP 7 is [ unlikely] ( https://github.com/m4rw3r/php-libev/issues/8 )
210
219
to happen any time soon.
211
220
212
- #### ExtEventLoop
213
-
214
- An ` ext-event ` based event loop.
215
-
216
- This uses the [ ` event ` PECL extension] ( https://pecl.php.net/package/event ) .
217
- It supports the same backends as libevent.
218
-
219
- This loop is known to work with PHP 5.4 through PHP 7+.
220
-
221
221
### LoopInterface
222
222
223
223
#### addTimer()
0 commit comments