Lines Matching refs:thread
23 - threading (each request is handled by a new thread)
221 another thread.
249 serve_forever() is running in another thread, or it will
270 # new thread to finish the request
643 def append(self, thread):
645 if thread.daemon:
647 super().append(thread)
654 for thread in self.pop_all():
655 thread.join()
658 self[:] = (thread for thread in self if thread.is_alive())
665 def append(self, thread):
673 """Mix-in class to handle each request in a new thread."""
685 """Same as in BaseServer but as a thread.
698 """Start a new thread to process the request."""