event_rpcgen.py

Development files for libevent

Install

All systems
curl cmd.cat/event_rpcgen.py.sh
Alpine
apk add libevent
Arch Arch Linux
pacman -S libevent
CentOS
yum install libevent-devel
Fedora
dnf install libevent-devel
OS X
brew install libevent
Docker
docker run cmd.cat/event_rpcgen.py event_rpcgen.py powered by Commando

libevent-devel

Development files for libevent

libevent2-devel

documentation for libevent2

libevent

The libevent API provides a mechanism to execute a callback

function when a specific event occurs on a file descriptor or after a timeout has been reached. libevent is meant to replace the asynchronous event loop found in event driven network servers. An application just needs to call event_dispatch() and can then add or remove events dynamically without having to change the event loop.