kitty.core.threading_utils module¶
Threading Utils
-
class
kitty.core.threading_utils.FuncThread(func, *args)[source]¶ Bases:
threading.ThreadFuncThread is a thread wrapper to create thread from a function
-
class
kitty.core.threading_utils.LoopFuncThread(func, *args)[source]¶ Bases:
threading.ThreadFuncThread is a thread wrapper to create thread from a function
-
__init__(func, *args)[source]¶ Parameters: - func – function to be call in a loop in this thread
- args – arguments for the function
-