module documentation

An epoll() based implementation of the twisted main loop.

To install the event loop (and you should do this before any connections, listeners or connectors are added):

    from twisted.internet import epollreactor
    epollreactor.install()
Class EPollReactor A reactor that uses epoll(7).
Function install Install the epoll() reactor.
Variable epoll Undocumented
Variable EPOLLERR Undocumented
Variable EPOLLHUP Undocumented
Variable EPOLLIN Undocumented
Variable EPOLLOUT Undocumented
def install():

Install the epoll() reactor.

epoll =

Undocumented

EPOLLERR =

Undocumented

EPOLLHUP =

Undocumented

EPOLLIN =

Undocumented

EPOLLOUT =

Undocumented