Base class EventHandler.
|
|
_invoke(self,
ev_type,
source)
Invoke a specific event handler. |
source code
|
|
|
|
ev_start(self,
worker)
Called to indicate that a worker has just started. |
source code
|
|
|
|
ev_read(self,
worker)
Called to indicate that a worker has data to read. |
source code
|
|
|
|
ev_written(self,
worker)
Called to indicate that writing has been done. |
source code
|
|
|
|
ev_hup(self,
worker)
Called to indicate that a worker's connection has been closed. |
source code
|
|
|
|
ev_timeout(self,
worker)
Called to indicate that a worker has timed out (worker timeout only). |
source code
|
|
|
|
ev_close(self,
worker)
Called to indicate that a worker has just finished (it may already
have failed on timeout). |
source code
|
|
|
|
|