Module SocketServer :: Class ThreadingMixIn
[hide private]
[frames] | no frames]

_ClassType ThreadingMixIn

Known Subclasses:

Mix-in class to handle each request in a new thread.

Instance Methods [hide private]
 
process_request_thread(self, request, client_address)
Same as in BaseServer but as a thread.
 
process_request(self, request, client_address)
Start a new thread to process the request.
Class Variables [hide private]
  daemon_threads = False
Method Details [hide private]

process_request_thread(self, request, client_address)

 

Same as in BaseServer but as a thread.

In addition, exception handling is done here.