8000 [EventLoop] Add basic LibEvLoop docs to the LibEvent README · Undefined-Variables/event-loop@7efa530 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7efa530

Browse files
committed
[EventLoop] Add basic LibEvLoop docs to the LibEvent README
1 parent ea39abe commit 7efa530

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,17 @@ single `run` call that is controlled by the user.
99

1010
In addition to the interface there are some implementations provided:
1111

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.
1515

16-
* `libevent`: This uses the `libevent` pecl extension. `libevent` itself
16+
* `LibEventLoop`: This uses the `libevent` pecl extension. `libevent` itself
1717
supports a number of system-specific backends (epoll, kqueue).
1818

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+
1923
All of the loops support these features:
2024

2125
* File descriptor polling

0 commit comments

Comments
 (0)
0