| Home | Trees | Indices | Help |
|---|
|
|
object --+
|
BasePoller --+
|
PollPoller
Implementation of poll, available on Linux
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
Inherited from Inherited from |
|||
|
|||
|
Inherited from |
|||
|
|||
initialize the poller and register any kernel global structures necessary to monitor the file descriptors
|
begin monitoring the transport socket for read/connect events
the underlying poller should not monitor Transports for writability
except when:
* the Transport's connection has not yet been established
* the Transport has been passed as an argument to defer_write
|
stop monitoring the transport socket
|
defers a write on the given transport. once the async poller determines that the transport can be written to, handle_write will be called
|
Must be implemented by subclasses to execute a single iteration of the
event loop. Based on the outcome of the events, the following actions
MUST be performed
* process_readables is called with a list of file descriptors which
have data available for reading
* process_writables is called with a list of file descriptors which
have data available for writing
|
| Home | Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Thu Jun 29 08:51:24 2017 | http://epydoc.sourceforge.net |