Part of twisted.internet.epollreactor View Source View In Hierarchy
Implements interfaces: twisted.internet.interfaces.IReactorFDSet
Instance Variables | _poller | A poll which will be used to check for I/O readiness.
|
_selectables | A dictionary mapping integer file descriptors to instances of FileDescriptor
which have been registered with the reactor. All
FileDescriptors which are currently receiving read or write
readiness notifications will be present as values in this dictionary.
| |
_reads | A dictionary mapping integer file descriptors to arbitrary values (this is
essentially a set). Keys in this dictionary will be registered with
_poller for read readiness notifications which will be
dispatched to the corresponding FileDescriptor
instances in _selectables .
| |
_writes | A dictionary mapping integer file descriptors to arbitrary values (this is
essentially a set). Keys in this dictionary will be registered with
_poller for write readiness notifications which will be
dispatched to the corresponding FileDescriptor
instances in _selectables .
|
Method | __init__ | Initialize epoll object, file descriptor tracking dictionaries, and the |
Method | addReader | Add a FileDescriptor for notification of data available to read. |
Method | addWriter | Add a FileDescriptor for notification of data available to write. |
Method | removeReader | Remove a Selectable for notification of data available to read. |
Method | removeWriter | Remove a Selectable for notification of data available to write. |
Method | removeAll | Remove all selectables, and return a list of them. |
Method | getReaders | Return the list of file descriptors currently monitored for input |
Method | getWriters | Return the list file descriptors currently monitored for output events |
Method | doPoll | Poll the poller for new events. |
Method | _add | Private method for adding a descriptor from the event loop. |
Method | _remove | Private method for removing a descriptor from the event loop. |
Method | _doReadOrWrite | fd is available for read or write, make the work and raise errors |
It takes care of adding it if new or modifying it if already added for another state (read -> read/write for example).
It does the inverse job of _add, and also add a check in case of the fd has gone away.
Returns | the list of file descriptors monitored for input events.
(type: list of IReadDescriptor
) |
Returns | the list of file descriptors monitored for output events.
(type: list of IWriteDescriptor
) |