wok annotate libevent/description.txt @ rev 25237

updated python-simplejson (3.17.0 -> 3.17.6)
author Hans-G?nter Theisgen
date Wed Jul 13 17:45:54 2022 +0100 (23 months ago)
parents
children
rev   line source
Hans-G?nter@24738 1 The libevent API provides a mechanism to execute a callback function
Hans-G?nter@24738 2 when a specific event occurs on a file descriptor or after a timeout
Hans-G?nter@24738 3 has been reached.
Hans-G?nter@24738 4 Furthermore, libevent also support callbacks due to signals or
Hans-G?nter@24738 5 regular timeouts.
Hans-G?nter@24738 6
Hans-G?nter@24738 7 Libevent is meant to replace the event loop found in event driven
Hans-G?nter@24738 8 network servers. An application just needs to call event_dispatch()
Hans-G?nter@24738 9 and then add or remove events dynamically without having to change
Hans-G?nter@24738 10 the event loop.