• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H03-May-2022-1,452903

php5/H03-May-2022-11,2217,445

php7/H03-May-2022-10,8527,356

php8/H03-May-2022-11,6078,065

tests/H03-May-2022-1,2871,107

CREDITSH A D23-Sep-202158 32

INSTALL.mdH A D23-Sep-20212.1 KiB8251

LICENSEH A D23-Sep-20213.1 KiB6955

README.mdH A D23-Sep-2021812 3622

config.m4H A D23-Sep-20219.6 KiB264227

config.w32H A D23-Sep-20213.2 KiB7564

README.md

1Event - PECL extension
2======================
3
4Event is a PECL extension providing interface to `libevent` C library.
5
6ABOUT LIBEVENT
7--------------
8
9The `libevent` API provides a mechanism to execute a callback function when a
10specific event occurs on a file descriptor or after a timeout has been reached.
11Furthermore, libevent also support callbacks due to *signals* or regular
12*timeouts*.
13
14`libevent` is meant to replace the event loop found in event driven network
15servers. An application just needs to call `event_dispatch()` and then add or
16remove events dynamically without having to change the event loop.
17
18
19SEE ALSO
20========
21
22* [Libevent homepage](http://libevent.org/)
23* [Installation instructions](INSTALL.md).
24
25
26AUTHOR
27======
28
29Ruslan Osmanov <osmanov@php.net>
30
31
32LICENSE
33=======
34
35[PHP 3.01](LICENSE)
36