| Home | Trees | Indices | Help | 
        
  | 
  
|---|
| 
       | 
  
        object --+        
                 |        
threading._Verbose --+    
                     |    
      threading.Thread --+
                         |
                        WorkerThread
Thread which continuously polls a Queue for Connection objects.
server: the HTTP Server which spawned this thread, and which owns the
    Queue and is placing active connections into it.
ready: a simple flag for the calling server to know when this thread
    has begun polling the Queue.
Due to the timing issues of polling a Queue, a WorkerThread does not
check its own 'ready' flag after it has started. To stop the thread,
it is necessary to stick a _SHUTDOWNREQUEST object onto the Queue
(one for each running WorkerThread).
| Instance Methods | |||
      
  | 
  |||
      
  | 
  |||
| 
     Inherited from  Inherited from   | 
  |||
| Class Variables | |
        conn = None
     | 
  |
| Properties | |
| 
     Inherited from   | 
  
| Method Details | 
  
 x.__init__(...) initializes x; see x.__class__.__doc__ for signature 
  | 
  
 
  | 
| Home | Trees | Indices | Help | 
        
  | 
  
|---|
| Generated by Epydoc 3.0.1 on Mon Jun 17 02:27:22 2013 | http://epydoc.sourceforge.net |