Package pyxmpp2 :: Package mainloop :: Module threads :: Class TimeoutThread
[hide private]

Class TimeoutThread


Thread to handle TimeoutHandler methods.
Instance Methods [hide private]
 
__init__(self, method, name=None, daemon=True, exc_queue=None)
x.__init__(...) initializes x; see help(type(x)) for signature
 
start(self)
Start the thread.
 
is_alive(self)
Check if the thread is alive.
 
stop(self)
Request the thread to stop.
 
join(self, timeout)
Join the thread (wait until it stops).
 
_run(self)
The thread function.
 
run(self)
The thread function.

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Instance Variables [hide private]
(type, value, traceback) tuple exc_info
this will hold exception information tuple whenever the thread was aborted by an exception.
queue for raised exceptions exc_queue
queue for raised exceptions
a bound method decorated with interfaces.timeout_handler method
the timout handler method
unicode name
thread name (for debugging)
threading.Thread thread
the actual thread object
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, method, name=None, daemon=True, exc_queue=None)
(Constructor)

 
x.__init__(...) initializes x; see help(type(x)) for signature
Overrides: object.__init__
(inherited documentation)

_run(self)

 
The thread function. Calls self.run() and if it raises an exception, stores it in self.exc_info