First page Back Continue Last page Overview Graphics
Threading gotchas
Python doesn't have thread priorities
- Nor do the event driven frameworks
Cannot interrupt a thread
- Have to poll variable
- Use setDaemon for blocking calls (eg accept)
Mismatch in producer/consumer rates can have dire effects
- Update GUI from idle handler
Notes: