|
__init__(self,
settings=None,
handlers=None,
io_loop=None)
x.__init__(...) initializes x; see help(type(x)) for signature |
|
|
|
|
|
_configure_io_handler(self,
handler)
Register an io-handler at the polling object. |
|
|
|
_prepare_io_handler(self,
handler)
Call the interfaces.IOHandler.prepare method and
remove the handler from unprepared handler list when done. |
|
|
|
|
|
|
|
|
|
quit(self)
Make the loop stop after the current iteration. |
|
|
|
loop(self,
timeout=None)
Run the loop. |
|
|
|
|
|
|
|
_handle_event(self,
handler,
fd,
event)
handle I/O events |
|
|
Inherited from base.MainLoopBase :
add_handler ,
remove_handler
Inherited from interfaces.MainLoop :
delayed_call
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|