File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,17 @@ single `run` call that is controlled by the user.
9
9
10
10
In addition to the interface there are some implementations provided:
11
11
12
- * ` stream_select ` : This is the only implementation which works out of the box
13
- with PHP. It does a simple ` select ` system call. It's not the most performant
14
- of loops, but still does the job quite well.
12
+ * ` StreamSelectLoop ` : This is the only implementation which works out of the
13
+ box with PHP. It does a simple ` select ` system call. It's not the most
14
+ performant of loops, but still does the job quite well.
15
15
16
- * ` libevent ` : This uses the ` libevent ` pecl extension. ` libevent ` itself
16
+ * ` LibEventLoop ` : This uses the ` libevent ` pecl extension. ` libevent ` itself
17
17
supports a number of system-specific backends (epoll, kqueue).
18
18
19
+ * ` LibEvLoop ` : This uses the ` libev ` pecl extension
20
+ ([ github] ( https://github.com/m4rw3r/php-libev ) ). It supports the same
21
+ backends as libevent.
22
+
19
23
All of the loops support these features:
20
24
21
25
* File descriptor polling
You can’t perform that action at this time.
0 commit comments