Lines Matching refs:threading
20 import threading
26 # If threading is available then ThreadPool should be provided. Therefore
226 self._worker_handler = threading.Thread(
238 self._task_handler = threading.Thread(
247 self._result_handler = threading.Thread(
511 thread = threading.current_thread()
529 thread = threading.current_thread()
575 thread = threading.current_thread()
708 if threading.current_thread() is not worker_handler:
719 if threading.current_thread() is not task_handler:
723 if threading.current_thread() is not result_handler:
749 self._event = threading.Event()
841 self._cond = threading.Condition(threading.Lock())