Lines Matching refs:ThreadingMixIn
47 :class:`ForkingMixIn` and :class:`ThreadingMixIn` mix-in classes can be used to
62 When inheriting from :class:`ThreadingMixIn` for threaded connection behavior,
64 shutdown. The :class:`ThreadingMixIn` class defines an attribute
68 Python will not exit until all threads created by :class:`ThreadingMixIn` have
102 ThreadingMixIn
108 class ThreadingUDPServer(ThreadingMixIn, UDPServer):
122 :meth:`socketserver.ThreadingMixIn.server_close` waits until all non-daemon
124 :attr:`socketserver.ThreadingMixIn.block_on_close` attribute is false. Use
126 :data:`ThreadingMixIn.daemon_threads` to ``True`` to not wait until threads
132 :meth:`socketserver.ThreadingMixIn.server_close` now waits until all
353 :class:`ThreadingMixIn` classes do this.
598 To build asynchronous handlers, use the :class:`ThreadingMixIn` and
601 An example for the :class:`ThreadingMixIn` class::
615 class ThreadedTCPServer(socketserver.ThreadingMixIn, socketserver.TCPServer):