|
__init__(self,
settings=None,
handlers=None)
x.__init__(...) initializes x; see help(type(x)) for signature |
|
|
|
add_handler(self,
handler)
Add a new handler to the main loop. |
|
|
|
|
|
_add_io_handler(self,
handler)
Add an IOHandler to the loop. |
|
|
|
_remove_io_handler(self,
handler)
Remove an IOHandler from the loop. |
|
|
|
quit(self)
Make the loop stop after the current iteration. |
|
|
|
loop(self,
timeout=None)
Run the loop. |
|
|
|
|
|
|
|
_add_timeout_handler(self,
handler)
Add a TimeoutHandler to the main loop. |
|
|
|
_remove_timeout_handler(self,
handler)
Remove TimeoutHandler from the main loop. |
|
|
|
|
Inherited from interfaces.MainLoop :
delayed_call
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|